|
@@ -0,0 +1,70 @@
|
|
|
|
+{
|
|
|
|
+ "store": {
|
|
|
|
+ "currencies": ["eur"]
|
|
|
|
+ },
|
|
|
|
+ "users": [
|
|
|
|
+ {
|
|
|
|
+ "email": "admin@medusa-test.com",
|
|
|
|
+ "password": "supersecret"
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "regions": [
|
|
|
|
+ {
|
|
|
|
+ "id": "test-region",
|
|
|
|
+ "name": "Default Region",
|
|
|
|
+ "currency_code": "eur",
|
|
|
|
+ "tax_rate": 0,
|
|
|
|
+ "payment_providers": ["stripe"],
|
|
|
|
+ "fulfillment_providers": ["manual"],
|
|
|
|
+ "countries": ["gb", "de", "dk", "se", "fr", "es", "it"]
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "shipping_options": [
|
|
|
|
+ {
|
|
|
|
+ "name": "Standard Shipping",
|
|
|
|
+ "region_id": "test-region",
|
|
|
|
+ "provider_id": "manual",
|
|
|
|
+ "data": {
|
|
|
|
+ "id": "manual-fulfillment"
|
|
|
|
+ },
|
|
|
|
+ "price_type": "flat_rate",
|
|
|
|
+ "amount": 1000
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "products": [
|
|
|
|
+ {
|
|
|
|
+ "title": "Cool Test Product",
|
|
|
|
+ "subtitle": null,
|
|
|
|
+ "description": "Welcome to Medusa",
|
|
|
|
+ "handle": "cool-test-product",
|
|
|
|
+ "is_giftcard": false,
|
|
|
|
+ "images": [],
|
|
|
|
+ "thumbnail": "",
|
|
|
|
+ "options": [
|
|
|
|
+ {
|
|
|
|
+ "title": "Size"
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "variants": [
|
|
|
|
+ {
|
|
|
|
+ "title": "One Size",
|
|
|
|
+ "prices": [
|
|
|
|
+ {
|
|
|
|
+ "currency_code": "eur",
|
|
|
|
+ "amount": 19500
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "options": [
|
|
|
|
+ {
|
|
|
|
+ "value": "One Size"
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "inventory_quantity": 100,
|
|
|
|
+ "manage_inventory": true
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|