seed-onboarding.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. "store": {
  3. "currencies": [
  4. "eur",
  5. "usd"
  6. ]
  7. },
  8. "users": [],
  9. "regions": [
  10. {
  11. "id": "test-region-eu",
  12. "name": "EU",
  13. "currency_code": "eur",
  14. "tax_rate": 0,
  15. "payment_providers": [
  16. "manual"
  17. ],
  18. "fulfillment_providers": [
  19. "manual"
  20. ],
  21. "countries": [
  22. "gb",
  23. "de",
  24. "dk",
  25. "se",
  26. "fr",
  27. "es",
  28. "it"
  29. ]
  30. },
  31. {
  32. "id": "test-region-na",
  33. "name": "NA",
  34. "currency_code": "usd",
  35. "tax_rate": 0,
  36. "payment_providers": [
  37. "manual"
  38. ],
  39. "fulfillment_providers": [
  40. "manual"
  41. ],
  42. "countries": [
  43. "us",
  44. "ca"
  45. ]
  46. }
  47. ],
  48. "shipping_options": [
  49. {
  50. "name": "PostFake Standard",
  51. "region_id": "test-region-eu",
  52. "provider_id": "manual",
  53. "data": {
  54. "id": "manual-fulfillment"
  55. },
  56. "price_type": "flat_rate",
  57. "amount": 1000
  58. },
  59. {
  60. "name": "PostFake Express",
  61. "region_id": "test-region-eu",
  62. "provider_id": "manual",
  63. "data": {
  64. "id": "manual-fulfillment"
  65. },
  66. "price_type": "flat_rate",
  67. "amount": 1500
  68. },
  69. {
  70. "name": "PostFake Return",
  71. "region_id": "test-region-eu",
  72. "provider_id": "manual",
  73. "data": {
  74. "id": "manual-fulfillment"
  75. },
  76. "price_type": "flat_rate",
  77. "is_return": true,
  78. "amount": 1000
  79. },
  80. {
  81. "name": "I want to return it myself",
  82. "region_id": "test-region-eu",
  83. "provider_id": "manual",
  84. "data": {
  85. "id": "manual-fulfillment"
  86. },
  87. "price_type": "flat_rate",
  88. "is_return": true,
  89. "amount": 0
  90. },
  91. {
  92. "name": "FakeEx Standard",
  93. "region_id": "test-region-na",
  94. "provider_id": "manual",
  95. "data": {
  96. "id": "manual-fulfillment"
  97. },
  98. "price_type": "flat_rate",
  99. "amount": 800
  100. },
  101. {
  102. "name": "FakeEx Express",
  103. "region_id": "test-region-na",
  104. "provider_id": "manual",
  105. "data": {
  106. "id": "manual-fulfillment"
  107. },
  108. "price_type": "flat_rate",
  109. "amount": 1200
  110. },
  111. {
  112. "name": "FakeEx Return",
  113. "region_id": "test-region-na",
  114. "provider_id": "manual",
  115. "data": {
  116. "id": "manual-fulfillment"
  117. },
  118. "price_type": "flat_rate",
  119. "is_return": true,
  120. "amount": 800
  121. },
  122. {
  123. "name": "I want to return it myself",
  124. "region_id": "test-region-na",
  125. "provider_id": "manual",
  126. "data": {
  127. "id": "manual-fulfillment"
  128. },
  129. "price_type": "flat_rate",
  130. "is_return": true,
  131. "amount": 0
  132. }
  133. ],
  134. "products": [],
  135. "categories": [],
  136. "publishable_api_keys": [
  137. {
  138. "title": "Development"
  139. }
  140. ]
  141. }