{
    "info": {
        "name": "Creamy Utopia API",
        "description": "Ice Cream Shop POS & Management System API",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "v1",
            "item": [
                {
                    "name": "auth",
                    "item": [
                        {
                            "name": "register",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/register",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/register",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "register"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"name\": \"John Doe\",\n    \"email\": \"john.doe@creamyutopia.com\",\n    \"password\": \"SecurePass123!\",\n    \"password_confirmation\": \"SecurePass123!\",\n    \"branch_id\": 1\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "login",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/login",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/login",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "login"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"email\": \"admin@creamy-utopia.com\",\n    \"password\": \"123456\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    },
                                    "event": [
                                        {
                                            "listen": "test",
                                            "script": {
                                                "exec": [
                                                    "var jsonData = pm.response.json();",
                                                    "if (jsonData.data && jsonData.data.token) {",
                                                    "    pm.collectionVariables.set(\"auth_token\", jsonData.data.token);",
                                                    "    console.log(\"Token saved to collection variables\");",
                                                    "}"
                                                ],
                                                "type": "text/javascript"
                                            }
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "logout",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/logout",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/logout",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "logout"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "user",
                            "item": [
                                {
                                    "name": "[GET] api/v1/auth/user",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/user",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "user"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "refresh-token",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/refresh-token",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/refresh-token",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "refresh-token"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "branches",
                    "item": [
                        {
                            "name": "[GET] api/v1/branches",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/branches",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "branches"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[POST] api/v1/branches",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/branches",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "branches"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Downtown Branch\",\n    \"code\": \"DOWNTOWN\",\n    \"address\": \"456 Main Street, Downtown\",\n    \"phone\": \"+1-555-0102\",\n    \"email\": \"downtown@creamyutopia.com\",\n    \"is_active\": true,\n    \"settings\": {\n        \"opening_time\": \"09:00\",\n        \"closing_time\": \"22:00\",\n        \"stock_restriction_enabled\": true,\n        \"tax_rate\": 8.5\n    }\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/branches/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/branches/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "branches",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/branches/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/branches/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "branches",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Downtown Branch Updated\",\n    \"address\": \"456 Main Street, Suite 100, Downtown\",\n    \"phone\": \"+1-555-0103\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/branches/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/branches/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "branches",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "settings",
                                    "item": [
                                        {
                                            "name": "[PUT] api/v1/branches/{id}/settings",
                                            "request": {
                                                "method": "PUT",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/branches/{id}/settings",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "branches",
                                                        "{id}",
                                                        "settings"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"settings\": {\n        \"opening_time\": \"08:00\",\n        \"closing_time\": \"23:00\",\n        \"stock_restriction_enabled\": true,\n        \"tax_rate\": 9,\n        \"allow_discount\": true,\n        \"max_discount_percent\": 20\n    }\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "products",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/branches/{branchId}/products",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/branches/{branchId}/products",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "branches",
                                                        "{branchId}",
                                                        "products"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "[POST] api/v1/branches/{branchId}/products/{productId}",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/branches/{branchId}/products/{productId}",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "branches",
                                                        "{branchId}",
                                                        "products",
                                                        "{productId}"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"price\": 6.99,\n    \"is_available\": true,\n    \"stock_quantity\": 100\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        {
                                            "name": "[PUT] api/v1/branches/{branchId}/products/{productId}",
                                            "request": {
                                                "method": "PUT",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/branches/{branchId}/products/{productId}",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "branches",
                                                        "{branchId}",
                                                        "products",
                                                        "{productId}"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"price\": 7.49,\n    \"is_available\": true\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "bulk-assign",
                                            "item": [
                                                {
                                                    "name": "[POST] api/v1/branches/{branchId}/products/bulk-assign",
                                                    "request": {
                                                        "method": "POST",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/products/bulk-assign",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "products",
                                                                "bulk-assign"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        },
                                                        "body": {
                                                            "mode": "raw",
                                                            "raw": "{\n    \"product_ids\": [\n        1,\n        2,\n        3,\n        4,\n        5\n    ],\n    \"default_available\": true\n}",
                                                            "options": {
                                                                "raw": {
                                                                    "language": "json"
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "inventory",
                                    "item": [
                                        {
                                            "name": "stock",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/inventory/stock",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/stock",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "stock"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                },
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/inventory/stock/{ingredientId}",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/stock/{ingredientId}",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "stock",
                                                                "{ingredientId}"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "low-stock",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/inventory/low-stock",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/low-stock",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "low-stock"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "out-of-stock",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/inventory/out-of-stock",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/out-of-stock",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "out-of-stock"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "add-stock",
                                            "item": [
                                                {
                                                    "name": "[POST] api/v1/branches/{branchId}/inventory/add-stock",
                                                    "request": {
                                                        "method": "POST",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/add-stock",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "add-stock"
                                                            ]
                                                        },
                                                        "body": {
                                                            "mode": "raw",
                                                            "raw": "{\n    \"ingredient_id\": 1,\n    \"quantity\": 1000,\n    \"unit_cost\": 0.15,\n    \"batch_number\": \"BATCH-2024-001\",\n    \"expiry_date\": \"2025-06-30\",\n    \"notes\": \"Regular stock replenishment\"\n}",
                                                            "options": {
                                                                "raw": {
                                                                    "language": "json"
                                                                }
                                                            }
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "deduct-stock",
                                            "item": [
                                                {
                                                    "name": "[POST] api/v1/branches/{branchId}/inventory/deduct-stock",
                                                    "request": {
                                                        "method": "POST",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/deduct-stock",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "deduct-stock"
                                                            ]
                                                        },
                                                        "body": {
                                                            "mode": "raw",
                                                            "raw": "{\n    \"ingredient_id\": 1,\n    \"quantity\": 100,\n    \"reason\": \"production\",\n    \"reference_type\": \"order\",\n    \"reference_id\": 1,\n    \"notes\": \"Used for daily production\"\n}",
                                                            "options": {
                                                                "raw": {
                                                                    "language": "json"
                                                                }
                                                            }
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "adjust-stock",
                                            "item": [
                                                {
                                                    "name": "[POST] api/v1/branches/{branchId}/inventory/adjust-stock",
                                                    "request": {
                                                        "method": "POST",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/adjust-stock",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "adjust-stock"
                                                            ]
                                                        },
                                                        "body": {
                                                            "mode": "raw",
                                                            "raw": "{\n    \"ingredient_id\": 1,\n    \"quantity\": -50,\n    \"reason\": \"Physical count adjustment\",\n    \"notes\": \"Variance found during inventory count\"\n}",
                                                            "options": {
                                                                "raw": {
                                                                    "language": "json"
                                                                }
                                                            }
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "record-waste",
                                            "item": [
                                                {
                                                    "name": "[POST] api/v1/branches/{branchId}/inventory/record-waste",
                                                    "request": {
                                                        "method": "POST",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/record-waste",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "record-waste"
                                                            ]
                                                        },
                                                        "body": {
                                                            "mode": "raw",
                                                            "raw": "{\n    \"ingredient_id\": 1,\n    \"quantity\": 25,\n    \"reason\": \"Expired product\",\n    \"notes\": \"Batch BATCH-2024-001 passed expiry date\"\n}",
                                                            "options": {
                                                                "raw": {
                                                                    "language": "json"
                                                                }
                                                            }
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "transactions",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/inventory/transactions",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/transactions",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "transactions"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                },
                                                {
                                                    "name": "ingredient",
                                                    "item": [
                                                        {
                                                            "name": "[GET] api/v1/branches/{branchId}/inventory/transactions/ingredient/{ingredientId}",
                                                            "request": {
                                                                "method": "GET",
                                                                "header": [
                                                                    {
                                                                        "key": "Accept",
                                                                        "value": "application/json",
                                                                        "type": "text"
                                                                    },
                                                                    {
                                                                        "key": "Content-Type",
                                                                        "value": "application/json",
                                                                        "type": "text"
                                                                    }
                                                                ],
                                                                "url": {
                                                                    "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/transactions/ingredient/{ingredientId}",
                                                                    "host": [
                                                                        "{{base_url}}"
                                                                    ],
                                                                    "path": [
                                                                        "api",
                                                                        "v1",
                                                                        "branches",
                                                                        "{branchId}",
                                                                        "inventory",
                                                                        "transactions",
                                                                        "ingredient",
                                                                        "{ingredientId}"
                                                                    ]
                                                                },
                                                                "auth": {
                                                                    "type": "bearer",
                                                                    "bearer": [
                                                                        {
                                                                            "key": "token",
                                                                            "value": "{{auth_token}}"
                                                                        }
                                                                    ]
                                                                }
                                                            }
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "date-range",
                                                    "item": [
                                                        {
                                                            "name": "[GET] api/v1/branches/{branchId}/inventory/transactions/date-range",
                                                            "request": {
                                                                "method": "GET",
                                                                "header": [
                                                                    {
                                                                        "key": "Accept",
                                                                        "value": "application/json",
                                                                        "type": "text"
                                                                    },
                                                                    {
                                                                        "key": "Content-Type",
                                                                        "value": "application/json",
                                                                        "type": "text"
                                                                    }
                                                                ],
                                                                "url": {
                                                                    "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/transactions/date-range",
                                                                    "host": [
                                                                        "{{base_url}}"
                                                                    ],
                                                                    "path": [
                                                                        "api",
                                                                        "v1",
                                                                        "branches",
                                                                        "{branchId}",
                                                                        "inventory",
                                                                        "transactions",
                                                                        "date-range"
                                                                    ]
                                                                },
                                                                "auth": {
                                                                    "type": "bearer",
                                                                    "bearer": [
                                                                        {
                                                                            "key": "token",
                                                                            "value": "{{auth_token}}"
                                                                        }
                                                                    ]
                                                                }
                                                            }
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "alerts",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/inventory/alerts",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/alerts",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "inventory",
                                                                "alerts"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                },
                                                {
                                                    "name": "",
                                                    "item": [
                                                        {
                                                            "name": "resolve",
                                                            "item": [
                                                                {
                                                                    "name": "[POST] api/v1/branches/{branchId}/inventory/alerts/{alertId}/resolve",
                                                                    "request": {
                                                                        "method": "POST",
                                                                        "header": [
                                                                            {
                                                                                "key": "Accept",
                                                                                "value": "application/json",
                                                                                "type": "text"
                                                                            },
                                                                            {
                                                                                "key": "Content-Type",
                                                                                "value": "application/json",
                                                                                "type": "text"
                                                                            }
                                                                        ],
                                                                        "url": {
                                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/inventory/alerts/{alertId}/resolve",
                                                                            "host": [
                                                                                "{{base_url}}"
                                                                            ],
                                                                            "path": [
                                                                                "api",
                                                                                "v1",
                                                                                "branches",
                                                                                "{branchId}",
                                                                                "inventory",
                                                                                "alerts",
                                                                                "{alertId}",
                                                                                "resolve"
                                                                            ]
                                                                        },
                                                                        "auth": {
                                                                            "type": "bearer",
                                                                            "bearer": [
                                                                                {
                                                                                    "key": "token",
                                                                                    "value": "{{auth_token}}"
                                                                                }
                                                                            ]
                                                                        },
                                                                        "body": {
                                                                            "mode": "raw",
                                                                            "raw": "{\n    \"resolution_notes\": \"Stock replenished via PO-2024-001\",\n    \"resolved\": true\n}",
                                                                            "options": {
                                                                                "raw": {
                                                                                    "language": "json"
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "cash-register",
                                    "item": [
                                        {
                                            "name": "open",
                                            "item": [
                                                {
                                                    "name": "[POST] api/v1/branches/{branchId}/cash-register/open",
                                                    "request": {
                                                        "method": "POST",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/cash-register/open",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "cash-register",
                                                                "open"
                                                            ]
                                                        },
                                                        "body": {
                                                            "mode": "raw",
                                                            "raw": "{\n    \"opening_balance\": 200,\n    \"notes\": \"Morning shift opening\"\n}",
                                                            "options": {
                                                                "raw": {
                                                                    "language": "json"
                                                                }
                                                            }
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "current",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/branches/{branchId}/cash-register/current",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/branches/{branchId}/cash-register/current",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "branches",
                                                                "{branchId}",
                                                                "cash-register",
                                                                "current"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "roles",
                    "item": [
                        {
                            "name": "[GET] api/v1/roles",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[POST] api/v1/roles",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"shift-supervisor\",\n    \"description\": \"Supervises daily shift operations\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/roles/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/roles/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"senior-shift-supervisor\",\n    \"description\": \"Senior supervisor with additional permissions\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/roles/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "permissions",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/roles/{id}/permissions",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/roles/{id}/permissions",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "roles",
                                                        "{id}",
                                                        "permissions"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"permissions\": [\n        \"orders.view\",\n        \"orders.create\",\n        \"orders.update\",\n        \"pos.access\",\n        \"pos.create-order\",\n        \"pos.apply-discount\",\n        \"cash-flows.view\",\n        \"cash-flows.create\",\n        \"expenses.view\",\n        \"stock.view\"\n    ]\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        {
                                            "name": "[GET] api/v1/roles/{id}/permissions",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/roles/{id}/permissions",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "roles",
                                                        "{id}",
                                                        "permissions"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "permissions",
                    "item": [
                        {
                            "name": "[GET] api/v1/permissions",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/permissions",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "permissions"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "by-module",
                            "item": [
                                {
                                    "name": "[GET] api/v1/permissions/by-module",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/permissions/by-module",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "permissions",
                                                "by-module"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "users",
                    "item": [
                        {
                            "name": "[GET] api/v1/users",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/users",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "users"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/users/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/users/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "users",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "assign-role",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/users/{id}/assign-role",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/users/{id}/assign-role",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "users",
                                                        "{id}",
                                                        "assign-role"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"role\": \"pos-operator\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "revoke-role",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/users/{id}/revoke-role",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/users/{id}/revoke-role",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "users",
                                                        "{id}",
                                                        "revoke-role"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"role\": \"pos-operator\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "permissions",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/users/{id}/permissions",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/users/{id}/permissions",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "users",
                                                        "{id}",
                                                        "permissions"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "categories",
                    "item": [
                        {
                            "name": "[GET] api/v1/categories",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "categories"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "active",
                            "item": [
                                {
                                    "name": "[GET] api/v1/categories/active",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/categories/active",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "categories",
                                                "active"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "with-products",
                            "item": [
                                {
                                    "name": "[GET] api/v1/categories/with-products",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/categories/with-products",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "categories",
                                                "with-products"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/categories",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "categories"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Premium Ice Cream\",\n    \"description\": \"Our finest selection of handcrafted ice cream flavors\",\n    \"sort_order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/categories/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/categories/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "categories",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/categories/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/categories/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "categories",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Premium Ice Cream Collection\",\n    \"description\": \"Updated: Our finest selection of handcrafted ice cream flavors made with premium ingredients\",\n    \"sort_order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/categories/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/categories/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "categories",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "restore",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/categories/{id}/restore",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/categories/{id}/restore",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "categories",
                                                        "{id}",
                                                        "restore"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "products",
                    "item": [
                        {
                            "name": "[GET] api/v1/products",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/products",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "products"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "active",
                            "item": [
                                {
                                    "name": "[GET] api/v1/products/active",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/products/active",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "products",
                                                "active"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "category",
                            "item": [
                                {
                                    "name": "[GET] api/v1/products/category/{categoryId}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/products/category/{categoryId}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "products",
                                                "category",
                                                "{categoryId}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/products",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/products",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "products"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Vanilla Bean Supreme\",\n    \"sku\": \"ICE-VAN-001\",\n    \"category_id\": 1,\n    \"description\": \"Classic Madagascar vanilla bean ice cream with real vanilla specks\",\n    \"base_price\": 5.99,\n    \"cost_price\": 2.5,\n    \"is_active\": true,\n    \"is_featured\": true,\n    \"allergens\": [\n        \"dairy\",\n        \"eggs\"\n    ],\n    \"nutritional_info\": {\n        \"calories\": 250,\n        \"fat\": 14,\n        \"sugar\": 21,\n        \"protein\": 4\n    }\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/products/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/products/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "products",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/products/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/products/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "products",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Vanilla Bean Supreme Deluxe\",\n    \"base_price\": 6.49,\n    \"description\": \"Premium Madagascar vanilla bean ice cream with real vanilla specks and caramel swirl\",\n    \"is_featured\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/products/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/products/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "products",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "option-sets",
                    "item": [
                        {
                            "name": "[GET] api/v1/option-sets",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/option-sets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "option-sets"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "active",
                            "item": [
                                {
                                    "name": "[GET] api/v1/option-sets/active",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/option-sets/active",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "option-sets",
                                                "active"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "type",
                            "item": [
                                {
                                    "name": "[GET] api/v1/option-sets/type/{type}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/option-sets/type/{type}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "option-sets",
                                                "type",
                                                "{type}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/option-sets",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/option-sets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "option-sets"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Serving Size\",\n    \"type\": \"single\",\n    \"is_required\": true,\n    \"is_active\": true,\n    \"sort_order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/option-sets/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/option-sets/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "option-sets",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/option-sets/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/option-sets/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "option-sets",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Cup/Cone Size\",\n    \"is_required\": true,\n    \"sort_order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/option-sets/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/option-sets/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "option-sets",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "items",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/option-sets/{optionSetId}/items",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/option-sets/{optionSetId}/items",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "option-sets",
                                                        "{optionSetId}",
                                                        "items"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "[POST] api/v1/option-sets/{optionSetId}/items",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/option-sets/{optionSetId}/items",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "option-sets",
                                                        "{optionSetId}",
                                                        "items"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"name\": \"Regular Scoop\",\n    \"price_modifier\": 0,\n    \"is_default\": true,\n    \"is_active\": true,\n    \"sort_order\": 1\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "[PUT] api/v1/option-sets/{optionSetId}/items/{itemId}",
                                            "request": {
                                                "method": "PUT",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/option-sets/{optionSetId}/items/{itemId}",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "option-sets",
                                                        "{optionSetId}",
                                                        "items",
                                                        "{itemId}"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"name\": \"Single Scoop\",\n    \"price_modifier\": 0,\n    \"is_default\": true\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        {
                                            "name": "[DELETE] api/v1/option-sets/{optionSetId}/items/{itemId}",
                                            "request": {
                                                "method": "DELETE",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/option-sets/{optionSetId}/items/{itemId}",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "option-sets",
                                                        "{optionSetId}",
                                                        "items",
                                                        "{itemId}"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "inner-option-sets",
                    "item": [
                        {
                            "name": "[GET] api/v1/inner-option-sets",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/inner-option-sets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "inner-option-sets"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "active",
                            "item": [
                                {
                                    "name": "[GET] api/v1/inner-option-sets/active",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/inner-option-sets/active",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "inner-option-sets",
                                                "active"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "type",
                            "item": [
                                {
                                    "name": "[GET] api/v1/inner-option-sets/type/{type}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/inner-option-sets/type/{type}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "inner-option-sets",
                                                "type",
                                                "{type}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/inner-option-sets",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/inner-option-sets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "inner-option-sets"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Toppings\",\n    \"type\": \"multiple\",\n    \"max_selections\": 3,\n    \"is_required\": false,\n    \"is_active\": true,\n    \"sort_order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/inner-option-sets/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "inner-option-sets",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/inner-option-sets/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "inner-option-sets",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Premium Toppings\",\n    \"max_selections\": 5,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/inner-option-sets/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "inner-option-sets",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "items",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/inner-option-sets/{innerOptionSetId}/items",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{innerOptionSetId}/items",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "inner-option-sets",
                                                        "{innerOptionSetId}",
                                                        "items"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "[POST] api/v1/inner-option-sets/{innerOptionSetId}/items",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{innerOptionSetId}/items",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "inner-option-sets",
                                                        "{innerOptionSetId}",
                                                        "items"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"name\": \"Chocolate Chips\",\n    \"price_modifier\": 0.75,\n    \"is_active\": true,\n    \"sort_order\": 1\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "[PUT] api/v1/inner-option-sets/{innerOptionSetId}/items/{itemId}",
                                            "request": {
                                                "method": "PUT",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{innerOptionSetId}/items/{itemId}",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "inner-option-sets",
                                                        "{innerOptionSetId}",
                                                        "items",
                                                        "{itemId}"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"name\": \"Belgian Chocolate Chips\",\n    \"price_modifier\": 1\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        {
                                            "name": "[DELETE] api/v1/inner-option-sets/{innerOptionSetId}/items/{itemId}",
                                            "request": {
                                                "method": "DELETE",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/inner-option-sets/{innerOptionSetId}/items/{itemId}",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "inner-option-sets",
                                                        "{innerOptionSetId}",
                                                        "items",
                                                        "{itemId}"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "ingredients",
                    "item": [
                        {
                            "name": "[GET] api/v1/ingredients",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/ingredients",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "ingredients"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "active",
                            "item": [
                                {
                                    "name": "[GET] api/v1/ingredients/active",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/ingredients/active",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "ingredients",
                                                "active"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "search",
                            "item": [
                                {
                                    "name": "[GET] api/v1/ingredients/search",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/ingredients/search",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "ingredients",
                                                "search"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "low-stock",
                            "item": [
                                {
                                    "name": "[GET] api/v1/ingredients/low-stock",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/ingredients/low-stock",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "ingredients",
                                                "low-stock"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/ingredients",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/ingredients",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "ingredients"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Vanilla Extract\",\n    \"sku\": \"ING-VAN-001\",\n    \"unit\": \"ml\",\n    \"cost_per_unit\": 0.15,\n    \"reorder_level\": 500,\n    \"minimum_stock\": 200,\n    \"is_active\": true,\n    \"category\": \"flavoring\",\n    \"supplier\": \"Premium Ingredients Co.\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/ingredients/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/ingredients/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "ingredients",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/ingredients/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/ingredients/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "ingredients",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Madagascar Vanilla Extract\",\n    \"cost_per_unit\": 0.18,\n    \"reorder_level\": 600,\n    \"supplier\": \"Madagascar Vanilla Imports\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/ingredients/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/ingredients/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "ingredients",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "recipes",
                    "item": [
                        {
                            "name": "[GET] api/v1/recipes",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/recipes",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "recipes"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "active",
                            "item": [
                                {
                                    "name": "[GET] api/v1/recipes/active",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/recipes/active",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "recipes",
                                                "active"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "product",
                            "item": [
                                {
                                    "name": "[GET] api/v1/recipes/product/{productId}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/recipes/product/{productId}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "recipes",
                                                "product",
                                                "{productId}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/recipes",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/recipes",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "recipes"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Classic Vanilla Ice Cream Base\",\n    \"product_id\": 1,\n    \"yield_quantity\": 5000,\n    \"yield_unit\": \"ml\",\n    \"instructions\": \"1. Heat milk and cream\\\\n2. Add sugar and vanilla\\\\n3. Temper eggs\\\\n4. Cook until thickened\\\\n5. Chill and churn\",\n    \"is_active\": true,\n    \"ingredients\": [\n        {\n            \"ingredient_id\": 1,\n            \"quantity\": 100,\n            \"unit\": \"ml\"\n        },\n        {\n            \"ingredient_id\": 2,\n            \"quantity\": 500,\n            \"unit\": \"ml\"\n        },\n        {\n            \"ingredient_id\": 3,\n            \"quantity\": 200,\n            \"unit\": \"g\"\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/recipes/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/recipes/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "recipes",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/recipes/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/recipes/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "recipes",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Premium Vanilla Ice Cream Base\",\n    \"yield_quantity\": 5500,\n    \"instructions\": \"Updated instructions for premium recipe...\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/recipes/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/recipes/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "recipes",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "cost",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/recipes/{id}/cost",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/recipes/{id}/cost",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "recipes",
                                                        "{id}",
                                                        "cost"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "scoop-yields",
                    "item": [
                        {
                            "name": "[GET] api/v1/scoop-yields",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/scoop-yields",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "scoop-yields"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "ingredient",
                            "item": [
                                {
                                    "name": "[GET] api/v1/scoop-yields/ingredient/{ingredientId}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/scoop-yields/ingredient/{ingredientId}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "scoop-yields",
                                                "ingredient",
                                                "{ingredientId}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/scoop-yields",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/scoop-yields",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "scoop-yields"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"ingredient_id\": 1,\n    \"scoop_size\": \"regular\",\n    \"yield_per_unit\": 20,\n    \"notes\": \"Standard scoop yield for vanilla base\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/scoop-yields/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/scoop-yields/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "scoop-yields",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"yield_per_unit\": 22,\n    \"notes\": \"Adjusted yield after measurement review\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/scoop-yields/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/scoop-yields/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "scoop-yields",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "calculate-usage",
                            "item": [
                                {
                                    "name": "[POST] api/v1/scoop-yields/calculate-usage",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/scoop-yields/calculate-usage",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "scoop-yields",
                                                "calculate-usage"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"ingredient_id\": 1,\n    \"scoop_count\": 50,\n    \"scoop_size\": \"regular\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "purchase-orders",
                    "item": [
                        {
                            "name": "[GET] api/v1/purchase-orders",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/purchase-orders",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "purchase-orders"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "branch",
                            "item": [
                                {
                                    "name": "[GET] api/v1/purchase-orders/branch/{branchId}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/purchase-orders/branch/{branchId}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "purchase-orders",
                                                "branch",
                                                "{branchId}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "",
                                    "item": [
                                        {
                                            "name": "status",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/purchase-orders/branch/{branchId}/status/{status}",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/purchase-orders/branch/{branchId}/status/{status}",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "purchase-orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "status",
                                                                "{status}"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "pending",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/purchase-orders/branch/{branchId}/pending",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/purchase-orders/branch/{branchId}/pending",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "purchase-orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "pending"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/purchase-orders",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/purchase-orders",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "purchase-orders"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"branch_id\": 1,\n    \"supplier_name\": \"Premium Ingredients Co.\",\n    \"supplier_contact\": \"orders@premiumingredients.com\",\n    \"expected_delivery_date\": \"2024-12-15\",\n    \"notes\": \"Weekly ingredient order\",\n    \"items\": [\n        {\n            \"ingredient_id\": 1,\n            \"quantity_ordered\": 2000,\n            \"unit_cost\": 0.14\n        },\n        {\n            \"ingredient_id\": 2,\n            \"quantity_ordered\": 5000,\n            \"unit_cost\": 0.05\n        },\n        {\n            \"ingredient_id\": 3,\n            \"quantity_ordered\": 1000,\n            \"unit_cost\": 0.08\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/purchase-orders/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/purchase-orders/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "purchase-orders",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/purchase-orders/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/purchase-orders/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "purchase-orders",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"expected_delivery_date\": \"2024-12-18\",\n    \"notes\": \"Delivery delayed - updated ETA\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/purchase-orders/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/purchase-orders/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "purchase-orders",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "status",
                                    "item": [
                                        {
                                            "name": "[PUT] api/v1/purchase-orders/{id}/status",
                                            "request": {
                                                "method": "PUT",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/purchase-orders/{id}/status",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "purchase-orders",
                                                        "{id}",
                                                        "status"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"status\": \"approved\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "receive",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/purchase-orders/{id}/receive",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/purchase-orders/{id}/receive",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "purchase-orders",
                                                        "{id}",
                                                        "receive"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"received_date\": \"2024-12-15\",\n    \"notes\": \"Full order received in good condition\",\n    \"items\": [\n        {\n            \"item_id\": 1,\n            \"quantity_received\": 2000\n        },\n        {\n            \"item_id\": 2,\n            \"quantity_received\": 5000\n        },\n        {\n            \"item_id\": 3,\n            \"quantity_received\": 1000\n        }\n    ]\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "cancel",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/purchase-orders/{id}/cancel",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/purchase-orders/{id}/cancel",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "purchase-orders",
                                                        "{id}",
                                                        "cancel"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"cancellation_reason\": \"Supplier unable to fulfill order\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "orders",
                    "item": [
                        {
                            "name": "[GET] api/v1/orders",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/orders",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "orders"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "branch",
                            "item": [
                                {
                                    "name": "[GET] api/v1/orders/branch/{branchId}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/orders/branch/{branchId}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "orders",
                                                "branch",
                                                "{branchId}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "",
                                    "item": [
                                        {
                                            "name": "active",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/orders/branch/{branchId}/active",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/orders/branch/{branchId}/active",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "active"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "status",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/orders/branch/{branchId}/status/{status}",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/orders/branch/{branchId}/status/{status}",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "status",
                                                                "{status}"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "today",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/orders/branch/{branchId}/today",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/orders/branch/{branchId}/today",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "today"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "date-range",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/orders/branch/{branchId}/date-range",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/orders/branch/{branchId}/date-range",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "date-range"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        },
                                        {
                                            "name": "daily-summary",
                                            "item": [
                                                {
                                                    "name": "[GET] api/v1/orders/branch/{branchId}/daily-summary",
                                                    "request": {
                                                        "method": "GET",
                                                        "header": [
                                                            {
                                                                "key": "Accept",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            },
                                                            {
                                                                "key": "Content-Type",
                                                                "value": "application/json",
                                                                "type": "text"
                                                            }
                                                        ],
                                                        "url": {
                                                            "raw": "{{base_url}}/api/v1/orders/branch/{branchId}/daily-summary",
                                                            "host": [
                                                                "{{base_url}}"
                                                            ],
                                                            "path": [
                                                                "api",
                                                                "v1",
                                                                "orders",
                                                                "branch",
                                                                "{branchId}",
                                                                "daily-summary"
                                                            ]
                                                        },
                                                        "auth": {
                                                            "type": "bearer",
                                                            "bearer": [
                                                                {
                                                                    "key": "token",
                                                                    "value": "{{auth_token}}"
                                                                }
                                                            ]
                                                        }
                                                    }
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/orders",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/orders",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "orders"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"branch_id\": 1,\n    \"order_type\": \"dine_in\",\n    \"customer_name\": \"Jane Smith\",\n    \"customer_phone\": \"+1-555-0199\",\n    \"table_number\": \"5\",\n    \"notes\": \"Extra napkins please\",\n    \"items\": [\n        {\n            \"product_id\": 1,\n            \"quantity\": 2,\n            \"unit_price\": 5.99,\n            \"options\": [\n                {\n                    \"option_set_id\": 1,\n                    \"option_item_id\": 2\n                }\n            ],\n            \"inner_options\": [\n                {\n                    \"inner_option_set_id\": 1,\n                    \"inner_option_item_ids\": [\n                        1,\n                        3\n                    ]\n                }\n            ],\n            \"notes\": \"One with chocolate drizzle\"\n        },\n        {\n            \"product_id\": 2,\n            \"quantity\": 1,\n            \"unit_price\": 4.99\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/orders/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/orders/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "orders",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/orders/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/orders/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "orders",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"notes\": \"Customer requested extra topping\",\n    \"table_number\": \"7\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/orders/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/orders/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "orders",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "status",
                                    "item": [
                                        {
                                            "name": "[PUT] api/v1/orders/{id}/status",
                                            "request": {
                                                "method": "PUT",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/orders/{id}/status",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "orders",
                                                        "{id}",
                                                        "status"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"status\": \"preparing\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "cancel",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/orders/{id}/cancel",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/orders/{id}/cancel",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "orders",
                                                        "{id}",
                                                        "cancel"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"cancellation_reason\": \"Customer changed mind\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "discount",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/orders/{id}/discount",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/orders/{id}/discount",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "orders",
                                                        "{id}",
                                                        "discount"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"discount_type\": \"percentage\",\n    \"discount_value\": 10,\n    \"discount_reason\": \"Loyalty customer discount\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "payments",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/orders/{orderId}/payments",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/orders/{orderId}/payments",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "orders",
                                                        "{orderId}",
                                                        "payments"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "[POST] api/v1/orders/{orderId}/payments",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/orders/{orderId}/payments",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "orders",
                                                        "{orderId}",
                                                        "payments"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"method\": \"cash\",\n    \"amount\": 20,\n    \"reference\": null,\n    \"notes\": \"Cash payment received\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        },
                                        {
                                            "name": "",
                                            "item": [
                                                {
                                                    "name": "refund",
                                                    "item": [
                                                        {
                                                            "name": "[POST] api/v1/orders/{orderId}/payments/{paymentId}/refund",
                                                            "request": {
                                                                "method": "POST",
                                                                "header": [
                                                                    {
                                                                        "key": "Accept",
                                                                        "value": "application/json",
                                                                        "type": "text"
                                                                    },
                                                                    {
                                                                        "key": "Content-Type",
                                                                        "value": "application/json",
                                                                        "type": "text"
                                                                    }
                                                                ],
                                                                "url": {
                                                                    "raw": "{{base_url}}/api/v1/orders/{orderId}/payments/{paymentId}/refund",
                                                                    "host": [
                                                                        "{{base_url}}"
                                                                    ],
                                                                    "path": [
                                                                        "api",
                                                                        "v1",
                                                                        "orders",
                                                                        "{orderId}",
                                                                        "payments",
                                                                        "{paymentId}",
                                                                        "refund"
                                                                    ]
                                                                },
                                                                "auth": {
                                                                    "type": "bearer",
                                                                    "bearer": [
                                                                        {
                                                                            "key": "token",
                                                                            "value": "{{auth_token}}"
                                                                        }
                                                                    ]
                                                                },
                                                                "body": {
                                                                    "mode": "raw",
                                                                    "raw": "{\n    \"amount\": 5.99,\n    \"reason\": \"Product quality issue\"\n}",
                                                                    "options": {
                                                                        "raw": {
                                                                            "language": "json"
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "expense-categories",
                    "item": [
                        {
                            "name": "[GET] api/v1/expense-categories",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expense-categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expense-categories"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[POST] api/v1/expense-categories",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expense-categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expense-categories"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Utilities\",\n    \"description\": \"Electricity, water, gas, and internet bills\",\n    \"is_active\": true,\n    \"budget_limit\": 1000\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/expense-categories/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expense-categories/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expense-categories",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/expense-categories/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expense-categories/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expense-categories",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Utilities & Services\",\n    \"budget_limit\": 1200\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/expense-categories/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expense-categories/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expense-categories",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "expenses",
                    "item": [
                        {
                            "name": "[GET] api/v1/expenses",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expenses",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expenses"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "branch",
                            "item": [
                                {
                                    "name": "[GET] api/v1/expenses/branch/{branchId}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/expenses/branch/{branchId}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "expenses",
                                                "branch",
                                                "{branchId}"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[POST] api/v1/expenses",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expenses",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expenses"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"branch_id\": 1,\n    \"expense_category_id\": 1,\n    \"amount\": 250,\n    \"description\": \"Monthly electricity bill\",\n    \"expense_date\": \"2024-12-01\",\n    \"payment_method\": \"bank_transfer\",\n    \"reference_number\": \"UTIL-2024-001\",\n    \"receipt_url\": null,\n    \"notes\": \"December utility payment\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/expenses/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expenses/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expenses",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[PUT] api/v1/expenses/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expenses/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expenses",
                                        "{id}"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"amount\": 275,\n    \"notes\": \"Adjusted after late fee added\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/expenses/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/expenses/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "expenses",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "approve",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/expenses/{id}/approve",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/expenses/{id}/approve",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "expenses",
                                                        "{id}",
                                                        "approve"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"notes\": \"Approved for payment\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "reject",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/expenses/{id}/reject",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/expenses/{id}/reject",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "expenses",
                                                        "{id}",
                                                        "reject"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"reason\": \"Missing receipt documentation\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "cash-registers",
                    "item": [
                        {
                            "name": "[GET] api/v1/cash-registers",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/cash-registers",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "cash-registers"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/cash-registers/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/cash-registers/{id}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "cash-registers",
                                        "{id}"
                                    ]
                                },
                                "auth": {
                                    "type": "bearer",
                                    "bearer": [
                                        {
                                            "key": "token",
                                            "value": "{{auth_token}}"
                                        }
                                    ]
                                }
                            }
                        },
                        {
                            "name": "",
                            "item": [
                                {
                                    "name": "transactions",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/cash-registers/{id}/transactions",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/cash-registers/{id}/transactions",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "cash-registers",
                                                        "{id}",
                                                        "transactions"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "summary",
                                    "item": [
                                        {
                                            "name": "[GET] api/v1/cash-registers/{id}/summary",
                                            "request": {
                                                "method": "GET",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/cash-registers/{id}/summary",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "cash-registers",
                                                        "{id}",
                                                        "summary"
                                                    ]
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "close",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/cash-registers/{id}/close",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/cash-registers/{id}/close",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "cash-registers",
                                                        "{id}",
                                                        "close"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"actual_balance\": 1250.75,\n    \"notes\": \"Evening shift closing - all counted and verified\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "add-cash",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/cash-registers/{id}/add-cash",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/cash-registers/{id}/add-cash",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "cash-registers",
                                                        "{id}",
                                                        "add-cash"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"amount\": 100,\n    \"notes\": \"Additional float added for busy period\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "remove-cash",
                                    "item": [
                                        {
                                            "name": "[POST] api/v1/cash-registers/{id}/remove-cash",
                                            "request": {
                                                "method": "POST",
                                                "header": [
                                                    {
                                                        "key": "Accept",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    },
                                                    {
                                                        "key": "Content-Type",
                                                        "value": "application/json",
                                                        "type": "text"
                                                    }
                                                ],
                                                "url": {
                                                    "raw": "{{base_url}}/api/v1/cash-registers/{id}/remove-cash",
                                                    "host": [
                                                        "{{base_url}}"
                                                    ],
                                                    "path": [
                                                        "api",
                                                        "v1",
                                                        "cash-registers",
                                                        "{id}",
                                                        "remove-cash"
                                                    ]
                                                },
                                                "body": {
                                                    "mode": "raw",
                                                    "raw": "{\n    \"amount\": 500,\n    \"notes\": \"Cash drop to safe\"\n}",
                                                    "options": {
                                                        "raw": {
                                                            "language": "json"
                                                        }
                                                    }
                                                },
                                                "auth": {
                                                    "type": "bearer",
                                                    "bearer": [
                                                        {
                                                            "key": "token",
                                                            "value": "{{auth_token}}"
                                                        }
                                                    ]
                                                }
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "analytics",
                    "item": [
                        {
                            "name": "dashboard",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/dashboard",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/dashboard",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "dashboard"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "sales",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/sales",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/sales",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "sales"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "expenses",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/expenses",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/expenses",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "expenses"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "profit-loss",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/profit-loss",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/profit-loss",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "profit-loss"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "top-products",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/top-products",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/top-products",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "top-products"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "hourly-sales",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/hourly-sales",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/hourly-sales",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "hourly-sales"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "sales-by-category",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/sales-by-category",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/sales-by-category",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "sales-by-category"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "sales-by-payment-method",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/sales-by-payment-method",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/sales-by-payment-method",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "sales-by-payment-method"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "branch-comparison",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/branch-comparison",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/branch-comparison",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "branch-comparison"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "inventory-valuation",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/inventory-valuation",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/inventory-valuation",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "inventory-valuation"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "low-stock-alerts",
                            "item": [
                                {
                                    "name": "[GET] api/v1/analytics/low-stock-alerts",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/analytics/low-stock-alerts",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "analytics",
                                                "low-stock-alerts"
                                            ]
                                        },
                                        "auth": {
                                            "type": "bearer",
                                            "bearer": [
                                                {
                                                    "key": "token",
                                                    "value": "{{auth_token}}"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "production-batches",
                    "item": [
                        {
                            "name": "Batch Size Configs",
                            "item": [
                                {
                                    "name": "[GET] List Batch Size Configs",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs"
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Create Batch Size Config",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"name\": \"15 Liter Bowl\",\n    \"size_code\": \"15L\",\n    \"size_value\": 15,\n    \"size_unit\": \"L\",\n    \"scoops_per_batch\": 150,\n    \"ingredient_multiplier\": 15,\n    \"default_expiry_hours\": 72,\n    \"is_active\": true\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[PUT] Update Batch Size Config",
                                    "request": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs/1",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs",
                                                "1"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"scoops_per_batch\": 55,\n    \"default_expiry_hours\": 36\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[DELETE] Delete Batch Size Config",
                                    "request": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs/5",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs",
                                                "5"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Production Batches",
                            "item": [
                                {
                                    "name": "[GET] List All Batches",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches?branch_id=1",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "product_id",
                                                    "value": "1",
                                                    "disabled": true
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "active",
                                                    "disabled": true
                                                },
                                                {
                                                    "key": "date",
                                                    "value": "2025-12-20",
                                                    "disabled": true
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] Get Active Batches",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/active?branch_id=1",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "active"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "product_id",
                                                    "value": "1",
                                                    "disabled": true
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Create Production Batch (Bowl)",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"branch_id\": 1,\n    \"product_id\": 1,\n    \"recipe_id\": 1,\n    \"batch_size\": \"10L\",\n    \"quantity\": 2,\n    \"notes\": \"Morning batch for Vanilla ice cream\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    },
                                    "event": [
                                        {
                                            "listen": "test",
                                            "script": {
                                                "exec": [
                                                    "if (pm.response.code === 201) {",
                                                    "    var jsonData = pm.response.json();",
                                                    "    if (jsonData.data && jsonData.data.id) {",
                                                    "        pm.environment.set(\"batch_id\", jsonData.data.id);",
                                                    "        pm.environment.set(\"batch_number\", jsonData.data.batch_number);",
                                                    "    }",
                                                    "}"
                                                ],
                                                "type": "text/javascript"
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "[GET] Get Batch Details",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}"
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[PUT] Update Batch Notes",
                                    "request": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"notes\": \"Updated: Moved to display freezer\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Record Batch Waste",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}/waste",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}",
                                                "waste"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"scoop_count\": 5,\n    \"reason\": \"Dropped during serving\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Cancel Batch",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}/cancel",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}",
                                                "cancel"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"reason\": \"Quality issue - batch did not freeze properly\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Mark Expired Batches",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/mark-expired",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "mark-expired"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Scoop Sales Reports",
                            "item": [
                                {
                                    "name": "[GET] Daily Batch Summary",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/reports/daily-summary?branch_id=1&date=2025-12-20",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "reports",
                                                "daily-summary"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "date",
                                                    "value": "2025-12-20"
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] Daily Scoop Sales",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/reports/daily-sales?branch_id=1&date=2025-12-20",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "reports",
                                                "daily-sales"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "date",
                                                    "value": "2025-12-20"
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] Sales Report (Date Range)",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/reports/sales?branch_id=1&start_date=2025-12-01&end_date=2025-12-31",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "reports",
                                                "sales"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "start_date",
                                                    "value": "2025-12-01"
                                                },
                                                {
                                                    "key": "end_date",
                                                    "value": "2025-12-31"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "production-batches",
                    "item": [
                        {
                            "name": "Batch Size Configs",
                            "item": [
                                {
                                    "name": "[GET] List Batch Size Configs",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs"
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Create Batch Size Config",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"name\": \"15 Liter Bowl\",\n    \"size_code\": \"15L\",\n    \"size_value\": 15,\n    \"size_unit\": \"L\",\n    \"scoops_per_batch\": 150,\n    \"ingredient_multiplier\": 15,\n    \"default_expiry_hours\": 72,\n    \"is_active\": true\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[PUT] Update Batch Size Config",
                                    "request": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs/1",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs",
                                                "1"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"scoops_per_batch\": 55,\n    \"default_expiry_hours\": 36\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[DELETE] Delete Batch Size Config",
                                    "request": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/batch-size-configs/5",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "batch-size-configs",
                                                "5"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Production Batches",
                            "item": [
                                {
                                    "name": "[GET] List All Batches",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches?branch_id=1",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "product_id",
                                                    "value": "1",
                                                    "disabled": true
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "active",
                                                    "disabled": true
                                                },
                                                {
                                                    "key": "date",
                                                    "value": "2025-12-20",
                                                    "disabled": true
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] Get Active Batches",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/active?branch_id=1",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "active"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "product_id",
                                                    "value": "1",
                                                    "disabled": true
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Create Production Batch (Bowl)",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"branch_id\": 1,\n    \"product_id\": 1,\n    \"recipe_id\": 1,\n    \"batch_size\": \"10L\",\n    \"quantity\": 2,\n    \"notes\": \"Morning batch for Vanilla ice cream\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    },
                                    "event": [
                                        {
                                            "listen": "test",
                                            "script": {
                                                "exec": [
                                                    "if (pm.response.code === 201) {",
                                                    "    var jsonData = pm.response.json();",
                                                    "    if (jsonData.data && jsonData.data.id) {",
                                                    "        pm.environment.set(\"batch_id\", jsonData.data.id);",
                                                    "        pm.environment.set(\"batch_number\", jsonData.data.batch_number);",
                                                    "    }",
                                                    "}"
                                                ],
                                                "type": "text/javascript"
                                            }
                                        }
                                    ]
                                },
                                {
                                    "name": "[GET] Get Batch Details",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}"
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[PUT] Update Batch Notes",
                                    "request": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"notes\": \"Updated: Moved to display freezer\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Record Batch Waste",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}/waste",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}",
                                                "waste"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"scoop_count\": 5,\n    \"reason\": \"Dropped during serving\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Cancel Batch",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/{{batch_id}}/cancel",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "{{batch_id}}",
                                                "cancel"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"reason\": \"Quality issue - batch did not freeze properly\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                },
                                {
                                    "name": "[POST] Mark Expired Batches",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/mark-expired",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "mark-expired"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Scoop Sales Reports",
                            "item": [
                                {
                                    "name": "[GET] Daily Batch Summary",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/reports/daily-summary?branch_id=1&date=2025-12-20",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "reports",
                                                "daily-summary"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "date",
                                                    "value": "2025-12-20"
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] Daily Scoop Sales",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/reports/daily-sales?branch_id=1&date=2025-12-20",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "reports",
                                                "daily-sales"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "date",
                                                    "value": "2025-12-20"
                                                }
                                            ]
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] Sales Report (Date Range)",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Authorization",
                                                "value": "Bearer {{token}}",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/production-batches/reports/sales?branch_id=1&start_date=2025-12-01&end_date=2025-12-31",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "production-batches",
                                                "reports",
                                                "sales"
                                            ],
                                            "query": [
                                                {
                                                    "key": "branch_id",
                                                    "value": "1"
                                                },
                                                {
                                                    "key": "start_date",
                                                    "value": "2025-12-01"
                                                },
                                                {
                                                    "key": "end_date",
                                                    "value": "2025-12-31"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "base_url",
            "value": "http://localhost:8000",
            "type": "string"
        },
        {
            "key": "auth_token",
            "value": "",
            "type": "string"
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{auth_token}}",
                "type": "string"
            }
        ]
    }
}