major refactoring adding vendor and customer features

This commit is contained in:
2025-10-11 09:09:25 +02:00
parent f569995883
commit dd16198276
126 changed files with 15109 additions and 3747 deletions

View File

@@ -97,7 +97,7 @@ if __name__ == "__main__":
"description": "A test product for demonstration",
"price": "19.99",
"brand": "Test Brand",
"availability": "in stock",
"availability": "in inventory",
}
product_result = create_product(admin_token, sample_product)
@@ -207,7 +207,7 @@ curl -X POST "http://localhost:8000/products" \
"description": "A test product for demonstration",
"price": "19.99",
"brand": "Test Brand",
"availability": "in stock"
"availability": "in inventory"
}'
```