duodealer_api 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (322) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.gitignore +13 -0
  4. data/.rubocop.yml +8 -0
  5. data/.travis.yml +23 -0
  6. data/Gemfile +5 -0
  7. data/Gemfile_ar41 +5 -0
  8. data/Gemfile_ar50 +5 -0
  9. data/Gemfile_ar51 +5 -0
  10. data/Gemfile_ar_master +5 -0
  11. data/RELEASING +13 -0
  12. data/Rakefile +44 -0
  13. data/docker-compose.yml +13 -0
  14. data/docs/graphql.md +191 -0
  15. data/duodealer_api.gemspec +38 -0
  16. data/lib/active_resource/connection_ext.rb +10 -0
  17. data/lib/active_resource/detailed_log_subscriber.rb +52 -0
  18. data/lib/active_resource/json_errors.rb +31 -0
  19. data/lib/duodealer_api.rb +33 -0
  20. data/lib/duodealer_api/api_version.rb +205 -0
  21. data/lib/duodealer_api/connection.rb +35 -0
  22. data/lib/duodealer_api/countable.rb +14 -0
  23. data/lib/duodealer_api/disable_prefix_check.rb +31 -0
  24. data/lib/duodealer_api/events.rb +7 -0
  25. data/lib/duodealer_api/graphql.rb +79 -0
  26. data/lib/duodealer_api/graphql/http_client.rb +22 -0
  27. data/lib/duodealer_api/graphql/railtie.rb +17 -0
  28. data/lib/duodealer_api/graphql/task.rake +97 -0
  29. data/lib/duodealer_api/limits.rb +76 -0
  30. data/lib/duodealer_api/message_enricher.rb +23 -0
  31. data/lib/duodealer_api/meta.rb +15 -0
  32. data/lib/duodealer_api/metafields.rb +20 -0
  33. data/lib/duodealer_api/paginated_collection.rb +69 -0
  34. data/lib/duodealer_api/pagination_link_headers.rb +33 -0
  35. data/lib/duodealer_api/resources.rb +3 -0
  36. data/lib/duodealer_api/resources/abandoned_checkout.rb +7 -0
  37. data/lib/duodealer_api/resources/access_scope.rb +10 -0
  38. data/lib/duodealer_api/resources/access_token.rb +8 -0
  39. data/lib/duodealer_api/resources/address.rb +4 -0
  40. data/lib/duodealer_api/resources/announcement.rb +4 -0
  41. data/lib/duodealer_api/resources/api_permission.rb +9 -0
  42. data/lib/duodealer_api/resources/application_charge.rb +15 -0
  43. data/lib/duodealer_api/resources/application_credit.rb +4 -0
  44. data/lib/duodealer_api/resources/array_base.rb +13 -0
  45. data/lib/duodealer_api/resources/article.rb +21 -0
  46. data/lib/duodealer_api/resources/asset.rb +100 -0
  47. data/lib/duodealer_api/resources/assigned_fulfillment_order.rb +16 -0
  48. data/lib/duodealer_api/resources/base.rb +162 -0
  49. data/lib/duodealer_api/resources/billing_address.rb +4 -0
  50. data/lib/duodealer_api/resources/blog.rb +10 -0
  51. data/lib/duodealer_api/resources/carrier_service.rb +4 -0
  52. data/lib/duodealer_api/resources/cart.rb +4 -0
  53. data/lib/duodealer_api/resources/checkout.rb +30 -0
  54. data/lib/duodealer_api/resources/collect.rb +6 -0
  55. data/lib/duodealer_api/resources/collection.rb +14 -0
  56. data/lib/duodealer_api/resources/collection_listing.rb +18 -0
  57. data/lib/duodealer_api/resources/collection_publication.rb +10 -0
  58. data/lib/duodealer_api/resources/comment.rb +9 -0
  59. data/lib/duodealer_api/resources/country.rb +4 -0
  60. data/lib/duodealer_api/resources/currency.rb +6 -0
  61. data/lib/duodealer_api/resources/custom_collection.rb +19 -0
  62. data/lib/duodealer_api/resources/customer.rb +29 -0
  63. data/lib/duodealer_api/resources/customer_group.rb +5 -0
  64. data/lib/duodealer_api/resources/customer_invite.rb +4 -0
  65. data/lib/duodealer_api/resources/customer_saved_search.rb +11 -0
  66. data/lib/duodealer_api/resources/discount_code.rb +9 -0
  67. data/lib/duodealer_api/resources/draft_order.rb +14 -0
  68. data/lib/duodealer_api/resources/draft_order_invoice.rb +4 -0
  69. data/lib/duodealer_api/resources/event.rb +8 -0
  70. data/lib/duodealer_api/resources/fulfillment.rb +47 -0
  71. data/lib/duodealer_api/resources/fulfillment_event.rb +15 -0
  72. data/lib/duodealer_api/resources/fulfillment_order.rb +137 -0
  73. data/lib/duodealer_api/resources/fulfillment_order_locations_for_move.rb +4 -0
  74. data/lib/duodealer_api/resources/fulfillment_request.rb +15 -0
  75. data/lib/duodealer_api/resources/fulfillment_service.rb +4 -0
  76. data/lib/duodealer_api/resources/fulfillment_v2.rb +20 -0
  77. data/lib/duodealer_api/resources/gift_card.rb +7 -0
  78. data/lib/duodealer_api/resources/image.rb +16 -0
  79. data/lib/duodealer_api/resources/inventory_item.rb +6 -0
  80. data/lib/duodealer_api/resources/inventory_level.rb +55 -0
  81. data/lib/duodealer_api/resources/line_item.rb +14 -0
  82. data/lib/duodealer_api/resources/location.rb +8 -0
  83. data/lib/duodealer_api/resources/marketing_event.rb +10 -0
  84. data/lib/duodealer_api/resources/metafield.rb +13 -0
  85. data/lib/duodealer_api/resources/note_attribute.rb +4 -0
  86. data/lib/duodealer_api/resources/option.rb +4 -0
  87. data/lib/duodealer_api/resources/order.rb +43 -0
  88. data/lib/duodealer_api/resources/order_risk.rb +8 -0
  89. data/lib/duodealer_api/resources/page.rb +6 -0
  90. data/lib/duodealer_api/resources/payment.rb +7 -0
  91. data/lib/duodealer_api/resources/payment_details.rb +4 -0
  92. data/lib/duodealer_api/resources/ping.rb +3 -0
  93. data/lib/duodealer_api/resources/policy.rb +7 -0
  94. data/lib/duodealer_api/resources/price_rule.rb +8 -0
  95. data/lib/duodealer_api/resources/product.rb +35 -0
  96. data/lib/duodealer_api/resources/product_listing.rb +16 -0
  97. data/lib/duodealer_api/resources/product_publication.rb +10 -0
  98. data/lib/duodealer_api/resources/province.rb +5 -0
  99. data/lib/duodealer_api/resources/publication.rb +5 -0
  100. data/lib/duodealer_api/resources/receipt.rb +4 -0
  101. data/lib/duodealer_api/resources/recurring_application_charge.rb +31 -0
  102. data/lib/duodealer_api/resources/redirect.rb +4 -0
  103. data/lib/duodealer_api/resources/refund.rb +14 -0
  104. data/lib/duodealer_api/resources/report.rb +4 -0
  105. data/lib/duodealer_api/resources/resource_feedback.rb +19 -0
  106. data/lib/duodealer_api/resources/rule.rb +4 -0
  107. data/lib/duodealer_api/resources/script_tag.rb +4 -0
  108. data/lib/duodealer_api/resources/shipping_address.rb +4 -0
  109. data/lib/duodealer_api/resources/shipping_line.rb +4 -0
  110. data/lib/duodealer_api/resources/shipping_rate.rb +7 -0
  111. data/lib/duodealer_api/resources/shipping_zone.rb +4 -0
  112. data/lib/duodealer_api/resources/shop.rb +25 -0
  113. data/lib/duodealer_api/resources/smart_collection.rb +19 -0
  114. data/lib/duodealer_api/resources/storefront_access_token.rb +4 -0
  115. data/lib/duodealer_api/resources/tax_line.rb +4 -0
  116. data/lib/duodealer_api/resources/tax_service.rb +4 -0
  117. data/lib/duodealer_api/resources/tender_transaction.rb +6 -0
  118. data/lib/duodealer_api/resources/theme.rb +4 -0
  119. data/lib/duodealer_api/resources/transaction.rb +5 -0
  120. data/lib/duodealer_api/resources/usage_charge.rb +5 -0
  121. data/lib/duodealer_api/resources/user.rb +4 -0
  122. data/lib/duodealer_api/resources/variant.rb +8 -0
  123. data/lib/duodealer_api/resources/webhook.rb +4 -0
  124. data/lib/duodealer_api/session.rb +171 -0
  125. data/lib/duodealer_api/version.rb +3 -0
  126. data/shipit.rubygems.yml +1 -0
  127. data/test/abandoned_checkouts_test.rb +29 -0
  128. data/test/access_scope_test.rb +23 -0
  129. data/test/access_token_test.rb +19 -0
  130. data/test/active_resource/json_errors_test.rb +19 -0
  131. data/test/api_permission_test.rb +9 -0
  132. data/test/api_version_test.rb +157 -0
  133. data/test/application_charge_test.rb +79 -0
  134. data/test/application_credit_test.rb +35 -0
  135. data/test/article_test.rb +73 -0
  136. data/test/asset_test.rb +18 -0
  137. data/test/assigned_fulfillment_order_test.rb +77 -0
  138. data/test/base_test.rb +198 -0
  139. data/test/blog_test.rb +8 -0
  140. data/test/carrier_service_test.rb +17 -0
  141. data/test/cart_test.rb +13 -0
  142. data/test/checkouts_test.rb +77 -0
  143. data/test/collect_test.rb +9 -0
  144. data/test/collection_listing_test.rb +79 -0
  145. data/test/collection_publication_test.rb +40 -0
  146. data/test/collection_test.rb +49 -0
  147. data/test/countable_test.rb +13 -0
  148. data/test/currency_test.rb +21 -0
  149. data/test/custom_collection_test.rb +9 -0
  150. data/test/customer_saved_search_test.rb +27 -0
  151. data/test/customer_test.rb +50 -0
  152. data/test/detailed_log_subscriber_test.rb +139 -0
  153. data/test/discount_code_test.rb +53 -0
  154. data/test/draft_order_test.rb +151 -0
  155. data/test/fixtures/abandoned_checkout.json +184 -0
  156. data/test/fixtures/abandoned_checkouts.json +186 -0
  157. data/test/fixtures/access_scopes.json +10 -0
  158. data/test/fixtures/access_token_delegate.json +4 -0
  159. data/test/fixtures/api_versions.json +38 -0
  160. data/test/fixtures/apis.json +42 -0
  161. data/test/fixtures/application_charge.json +16 -0
  162. data/test/fixtures/application_charges.json +57 -0
  163. data/test/fixtures/application_credit.json +12 -0
  164. data/test/fixtures/application_credits.json +24 -0
  165. data/test/fixtures/article.json +15 -0
  166. data/test/fixtures/articles.json +39 -0
  167. data/test/fixtures/asset.json +9 -0
  168. data/test/fixtures/assets.json +136 -0
  169. data/test/fixtures/assigned_fulfillment_orders.json +78 -0
  170. data/test/fixtures/authors.json +1 -0
  171. data/test/fixtures/blog.json +13 -0
  172. data/test/fixtures/blogs.json +13 -0
  173. data/test/fixtures/carrier_service.json +9 -0
  174. data/test/fixtures/carts.json +43 -0
  175. data/test/fixtures/checkout.json +160 -0
  176. data/test/fixtures/checkouts.json +162 -0
  177. data/test/fixtures/collect.json +12 -0
  178. data/test/fixtures/collection.json +17 -0
  179. data/test/fixtures/collection_listing.json +11 -0
  180. data/test/fixtures/collection_listing_product_ids.json +1 -0
  181. data/test/fixtures/collection_listing_product_ids2.json +1 -0
  182. data/test/fixtures/collection_listings.json +13 -0
  183. data/test/fixtures/collection_products.json +47 -0
  184. data/test/fixtures/collection_publication.json +11 -0
  185. data/test/fixtures/collection_publications.json +13 -0
  186. data/test/fixtures/currencies.json +25 -0
  187. data/test/fixtures/custom_collection.json +17 -0
  188. data/test/fixtures/customer_invite.json +9 -0
  189. data/test/fixtures/customer_saved_search.json +9 -0
  190. data/test/fixtures/customer_saved_search_customers.json +60 -0
  191. data/test/fixtures/customers.json +59 -0
  192. data/test/fixtures/customers_account_activation_url.json +3 -0
  193. data/test/fixtures/customers_search.json +60 -0
  194. data/test/fixtures/discount_code.json +10 -0
  195. data/test/fixtures/discount_codes.json +12 -0
  196. data/test/fixtures/draft_order.json +159 -0
  197. data/test/fixtures/draft_order_completed.json +159 -0
  198. data/test/fixtures/draft_order_invoice.json +9 -0
  199. data/test/fixtures/draft_orders.json +161 -0
  200. data/test/fixtures/engagement.json +15 -0
  201. data/test/fixtures/events.json +31 -0
  202. data/test/fixtures/fulfillment.json +49 -0
  203. data/test/fixtures/fulfillment_event.json +12 -0
  204. data/test/fixtures/fulfillment_order.json +38 -0
  205. data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
  206. data/test/fixtures/fulfillment_orders.json +78 -0
  207. data/test/fixtures/fulfillment_request.json +28 -0
  208. data/test/fixtures/fulfillment_service.json +10 -0
  209. data/test/fixtures/fulfillments.json +53 -0
  210. data/test/fixtures/gift_card.json +20 -0
  211. data/test/fixtures/gift_card_disabled.json +20 -0
  212. data/test/fixtures/graphql/2019-10.json +1083 -0
  213. data/test/fixtures/graphql/dummy_schema.rb +16 -0
  214. data/test/fixtures/graphql/unstable.json +1083 -0
  215. data/test/fixtures/image.json +10 -0
  216. data/test/fixtures/images.json +20 -0
  217. data/test/fixtures/inventory_level.json +7 -0
  218. data/test/fixtures/inventory_levels.json +24 -0
  219. data/test/fixtures/marketing_event.json +28 -0
  220. data/test/fixtures/marketing_events.json +54 -0
  221. data/test/fixtures/metafield.json +12 -0
  222. data/test/fixtures/metafields.json +34 -0
  223. data/test/fixtures/order.json +297 -0
  224. data/test/fixtures/order_risk.json +14 -0
  225. data/test/fixtures/order_risks.json +28 -0
  226. data/test/fixtures/order_with_properties.json +373 -0
  227. data/test/fixtures/orders.json +299 -0
  228. data/test/fixtures/payment.json +7 -0
  229. data/test/fixtures/payments.json +9 -0
  230. data/test/fixtures/ping/conversation.json +1 -0
  231. data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
  232. data/test/fixtures/ping/message.json +1 -0
  233. data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
  234. data/test/fixtures/policies.json +8 -0
  235. data/test/fixtures/price_rule.json +27 -0
  236. data/test/fixtures/price_rules.json +28 -0
  237. data/test/fixtures/product.json +116 -0
  238. data/test/fixtures/product_listing.json +86 -0
  239. data/test/fixtures/product_listing_product_ids.json +1 -0
  240. data/test/fixtures/product_listing_product_ids2.json +1 -0
  241. data/test/fixtures/product_listings.json +174 -0
  242. data/test/fixtures/product_publication.json +11 -0
  243. data/test/fixtures/product_publications.json +13 -0
  244. data/test/fixtures/publications.json +9 -0
  245. data/test/fixtures/recurring_application_charge.json +22 -0
  246. data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
  247. data/test/fixtures/recurring_application_charges.json +106 -0
  248. data/test/fixtures/redirect.json +7 -0
  249. data/test/fixtures/refund.json +112 -0
  250. data/test/fixtures/report.json +9 -0
  251. data/test/fixtures/reports.json +11 -0
  252. data/test/fixtures/script_tag.json +10 -0
  253. data/test/fixtures/script_tags.json +18 -0
  254. data/test/fixtures/shipping_rates.json +12 -0
  255. data/test/fixtures/shipping_zones.json +315 -0
  256. data/test/fixtures/shop.json +26 -0
  257. data/test/fixtures/smart_collection.json +21 -0
  258. data/test/fixtures/smart_collection_products.json +155 -0
  259. data/test/fixtures/storefront_access_token.json +9 -0
  260. data/test/fixtures/storefront_access_tokens.json +18 -0
  261. data/test/fixtures/tags.json +1 -0
  262. data/test/fixtures/tax_service.json +9 -0
  263. data/test/fixtures/tender_transactions.json +52 -0
  264. data/test/fixtures/transaction.json +29 -0
  265. data/test/fixtures/usage_charge.json +11 -0
  266. data/test/fixtures/usage_charges.json +23 -0
  267. data/test/fixtures/user.json +21 -0
  268. data/test/fixtures/users.json +42 -0
  269. data/test/fixtures/variant.json +23 -0
  270. data/test/fixtures/variants.json +88 -0
  271. data/test/fixtures/webhook.json +10 -0
  272. data/test/fixtures/webhooks.json +18 -0
  273. data/test/fulfillment_event_test.rb +69 -0
  274. data/test/fulfillment_order_test.rb +462 -0
  275. data/test/fulfillment_order_test_helper.rb +7 -0
  276. data/test/fulfillment_request_test.rb +33 -0
  277. data/test/fulfillment_service_test.rb +17 -0
  278. data/test/fulfillment_test.rb +224 -0
  279. data/test/fulfillment_v2_test.rb +62 -0
  280. data/test/gift_card_test.rb +22 -0
  281. data/test/graphql/http_client_test.rb +26 -0
  282. data/test/graphql_test.rb +147 -0
  283. data/test/image_test.rb +39 -0
  284. data/test/inventory_level_test.rb +59 -0
  285. data/test/lib/webmock_extensions/last_request.rb +16 -0
  286. data/test/limits_test.rb +38 -0
  287. data/test/location_test.rb +14 -0
  288. data/test/marketing_event_test.rb +68 -0
  289. data/test/message_enricher_test.rb +45 -0
  290. data/test/meta_test.rb +49 -0
  291. data/test/metafield_test.rb +46 -0
  292. data/test/order_risk_test.rb +46 -0
  293. data/test/order_test.rb +125 -0
  294. data/test/pagination_test.rb +257 -0
  295. data/test/payment_test.rb +19 -0
  296. data/test/policy_test.rb +19 -0
  297. data/test/price_rule_test.rb +65 -0
  298. data/test/product_listing_test.rb +97 -0
  299. data/test/product_publication_test.rb +40 -0
  300. data/test/product_test.rb +60 -0
  301. data/test/publication_test.rb +12 -0
  302. data/test/recurring_application_charge_test.rb +142 -0
  303. data/test/redirect_test.rb +9 -0
  304. data/test/refund_test.rb +32 -0
  305. data/test/report_test.rb +35 -0
  306. data/test/resource_feedback_test.rb +42 -0
  307. data/test/script_tag_test.rb +30 -0
  308. data/test/session_test.rb +366 -0
  309. data/test/shipping_rate_test.rb +17 -0
  310. data/test/shipping_zone_test.rb +10 -0
  311. data/test/shop_test.rb +68 -0
  312. data/test/smart_collection_test.rb +35 -0
  313. data/test/storefront_access_token_test.rb +32 -0
  314. data/test/tax_service_test.rb +9 -0
  315. data/test/tender_transaction_test.rb +18 -0
  316. data/test/test_helper.rb +124 -0
  317. data/test/transaction_test.rb +17 -0
  318. data/test/usage_charge_test.rb +21 -0
  319. data/test/user_test.rb +17 -0
  320. data/test/variant_test.rb +46 -0
  321. data/test/webhook_test.rb +21 -0
  322. metadata +541 -0
@@ -0,0 +1 @@
1
+ {"authors": ["Duodealer", "development shop", "development shop"]}
@@ -0,0 +1,13 @@
1
+ {
2
+ "blog": {
3
+ "handle": "test-blog",
4
+ "created_at": "2012-01-10T17:45:19-05:00",
5
+ "title": "Test Blog",
6
+ "template_suffix": null,
7
+ "updated_at": "2012-01-10T17:45:19-05:00",
8
+ "feedburner_location": null,
9
+ "id": 1008414260,
10
+ "feedburner": null,
11
+ "commentable": "no"
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "blogs": [{
3
+ "handle": "test-blog",
4
+ "created_at": "2012-01-10T17:45:19-05:00",
5
+ "title": "Test Blog",
6
+ "template_suffix": null,
7
+ "updated_at": "2012-01-10T17:45:19-05:00",
8
+ "feedburner_location": null,
9
+ "id": 1008414260,
10
+ "feedburner": null,
11
+ "commentable": "no"
12
+ }]
13
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "carrier_service": {
3
+ "name": "Some Postal Service",
4
+ "id": 123456,
5
+ "callback_url": "http://google.com",
6
+ "format": "json",
7
+ "service_discovery": true
8
+ }
9
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "carts": [
3
+ {
4
+ "id": 2,
5
+ "note": null,
6
+ "token": "3eed8183d4281db6ea82ee2b8f23e9cc",
7
+ "updated_at": "2012-02-13T14:39:37-05:00",
8
+ "line_items":
9
+ [
10
+ {
11
+ "id": 1,
12
+ "title": "test",
13
+ "price": "1.00",
14
+ "line_price": "1.00",
15
+ "quantity": 1,
16
+ "sku": "",
17
+ "grams": 1000,
18
+ "vendor": "test",
19
+ "variant_id": 1
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "id": 1,
25
+ "note": "",
26
+ "token": "49801807939c296be1e9a4bf6783a705",
27
+ "updated_at": "2012-02-13T14:39:12-05:00",
28
+ "line_items":[
29
+ {
30
+ "id": 1,
31
+ "title": "test",
32
+ "price": "1.00",
33
+ "line_price": "1.00",
34
+ "quantity": 1,
35
+ "sku": "",
36
+ "grams": 1000,
37
+ "vendor": "test",
38
+ "variant_id": 1
39
+ }
40
+ ]
41
+ }
42
+ ]
43
+ }
@@ -0,0 +1,160 @@
1
+ {
2
+ "checkout": {
3
+ "applied_discount": "0.00",
4
+ "clone_url": "",
5
+ "completed_at": null,
6
+ "created_at": "2012-10-12T07:05:27-04:00",
7
+ "credit_card": null,
8
+ "currency": "USD",
9
+ "presentment_currency": "USD",
10
+ "email": "bob.norman@hostmail.com",
11
+ "note": null,
12
+ "shipping_line": [
13
+ {
14
+ "title": "Free Shipping",
15
+ "price": "0.00",
16
+ "code": "Free Shipping",
17
+ "source": "duodealer"
18
+ }
19
+ ],
20
+ "shipping_rates": [
21
+ {
22
+ "id": "canada_post-INT.TP.BOGUS-4.00",
23
+ "price": "4.00",
24
+ "title": "Small Packet International Air Bogus"
25
+ },
26
+ {
27
+ "id": "canada_post-INT.TP.BOGUS-8.00",
28
+ "price": "8.00",
29
+ "title": "Medium Packet International Air Bogus"
30
+ }
31
+ ],
32
+ "source_identifier": null,
33
+ "source_name": "web",
34
+ "source_url": null,
35
+ "subtotal_price": "398.00",
36
+ "shipping_policy_url": null,
37
+ "taxes_included": false,
38
+ "token": "2a1ace52255252df566af0faaedfbfa7",
39
+ "total_line_items_price": "398.00",
40
+ "total_price": "409.94",
41
+ "total_tax": "11.94",
42
+ "updated_at": "2012-10-12T07:05:27-04:00",
43
+ "line_items": [
44
+ {
45
+ "applied_discounts": [
46
+
47
+ ],
48
+ "compare_at_price": null,
49
+ "fulfillment_service": "manual",
50
+ "gift_card": false,
51
+ "grams": 200,
52
+ "id": 49148385,
53
+ "line_price": "199.00",
54
+ "price": "199.00",
55
+ "product_id": 632910392,
56
+ "properties": null,
57
+ "quantity": 1,
58
+ "requires_shipping": true,
59
+ "sku": "IPOD2008RED",
60
+ "tax_lines": [
61
+
62
+ ],
63
+ "taxable": true,
64
+ "title": "IPod Nano - 8GB",
65
+ "variant_id": 49148385,
66
+ "variant_title": "Red",
67
+ "vendor": "Apple"
68
+ },
69
+ {
70
+ "applied_discounts": [
71
+
72
+ ],
73
+ "compare_at_price": null,
74
+ "fulfillment_service": "manual",
75
+ "gift_card": false,
76
+ "grams": 200,
77
+ "id": 808950810,
78
+ "line_price": "199.00",
79
+ "price": "199.00",
80
+ "product_id": 632910392,
81
+ "properties": null,
82
+ "quantity": 1,
83
+ "requires_shipping": true,
84
+ "sku": "IPOD2008PINK",
85
+ "tax_lines": [
86
+
87
+ ],
88
+ "taxable": true,
89
+ "title": "IPod Nano - 8GB",
90
+ "variant_id": 808950810,
91
+ "variant_title": "Pink",
92
+ "vendor": "Apple"
93
+ }
94
+ ],
95
+ "name": "#450789469",
96
+ "note_attributes": [
97
+ {
98
+ "name": "custom engraving",
99
+ "value": "Happy Birthday"
100
+ },
101
+ {
102
+ "name": "colour",
103
+ "value": "green"
104
+ }
105
+ ],
106
+ "discount_code": [
107
+ {
108
+ "code": "TENOFF",
109
+ "amount": "10.00"
110
+ }
111
+ ],
112
+ "tax_lines": [
113
+ {
114
+ "price": "11.94",
115
+ "rate": 0.06,
116
+ "title": "State Tax"
117
+ }
118
+ ],
119
+ "billing_address": {
120
+ "address1": "Chestnut Street 92",
121
+ "address2": "",
122
+ "city": "Louisville",
123
+ "company": null,
124
+ "country": "United States",
125
+ "first_name": "Bob",
126
+ "last_name": "Norman",
127
+ "latitude": "45.41634",
128
+ "longitude": "-75.6868",
129
+ "phone": "555-625-1199",
130
+ "province": "Kentucky",
131
+ "zip": "40202",
132
+ "name": "Bob Norman",
133
+ "country_code": "US",
134
+ "province_code": "KY"
135
+ },
136
+ "shipping_address": {
137
+ "address1": "Chestnut Street 92",
138
+ "address2": "",
139
+ "city": "Louisville",
140
+ "company": null,
141
+ "country": "United States",
142
+ "first_name": "Bob",
143
+ "last_name": "Norman",
144
+ "latitude": "45.41634",
145
+ "longitude": "-75.6868",
146
+ "phone": "555-625-1199",
147
+ "province": "Kentucky",
148
+ "zip": "40202",
149
+ "name": "Bob Norman",
150
+ "country_code": "US",
151
+ "province_code": "KY"
152
+ },
153
+ "customer_id": null,
154
+ "customer_locale": "en-CA",
155
+ "device_id": "12",
156
+ "order": null,
157
+ "order_id": null,
158
+ "order_status_url": ""
159
+ }
160
+ }
@@ -0,0 +1,162 @@
1
+ {
2
+ "checkouts": [
3
+ {
4
+ "applied_discount": "0.00",
5
+ "clone_url": "",
6
+ "completed_at": null,
7
+ "created_at": "2012-10-12T07:05:27-04:00",
8
+ "credit_card": null,
9
+ "currency": "USD",
10
+ "presentment_currency": "USD",
11
+ "email": "bob.norman@hostmail.com",
12
+ "note": null,
13
+ "shipping_line": [
14
+ {
15
+ "title": "Free Shipping",
16
+ "price": "0.00",
17
+ "code": "Free Shipping",
18
+ "source": "duodealer"
19
+ }
20
+ ],
21
+ "shipping_rates": [
22
+ {
23
+ "id": "canada_post-INT.TP.BOGUS-4.00",
24
+ "price": "4.00",
25
+ "title": "Small Packet International Air Bogus"
26
+ },
27
+ {
28
+ "id": "canada_post-INT.TP.BOGUS-8.00",
29
+ "price": "8.00",
30
+ "title": "Medium Packet International Air Bogus"
31
+ }
32
+ ],
33
+ "source_identifier": null,
34
+ "source_name": "web",
35
+ "source_url": null,
36
+ "subtotal_price": "398.00",
37
+ "shipping_policy_url": null,
38
+ "taxes_included": false,
39
+ "token": "2a1ace52255252df566af0faaedfbfa7",
40
+ "total_line_items_price": "398.00",
41
+ "total_price": "409.94",
42
+ "total_tax": "11.94",
43
+ "updated_at": "2012-10-12T07:05:27-04:00",
44
+ "line_items": [
45
+ {
46
+ "applied_discounts": [
47
+
48
+ ],
49
+ "compare_at_price": null,
50
+ "fulfillment_service": "manual",
51
+ "gift_card": false,
52
+ "grams": 200,
53
+ "id": 49148385,
54
+ "line_price": "199.00",
55
+ "price": "199.00",
56
+ "product_id": 632910392,
57
+ "properties": null,
58
+ "quantity": 1,
59
+ "requires_shipping": true,
60
+ "sku": "IPOD2008RED",
61
+ "tax_lines": [
62
+
63
+ ],
64
+ "taxable": true,
65
+ "title": "IPod Nano - 8GB",
66
+ "variant_id": 49148385,
67
+ "variant_title": "Red",
68
+ "vendor": "Apple"
69
+ },
70
+ {
71
+ "applied_discounts": [
72
+
73
+ ],
74
+ "compare_at_price": null,
75
+ "fulfillment_service": "manual",
76
+ "gift_card": false,
77
+ "grams": 200,
78
+ "id": 808950810,
79
+ "line_price": "199.00",
80
+ "price": "199.00",
81
+ "product_id": 632910392,
82
+ "properties": null,
83
+ "quantity": 1,
84
+ "requires_shipping": true,
85
+ "sku": "IPOD2008PINK",
86
+ "tax_lines": [
87
+
88
+ ],
89
+ "taxable": true,
90
+ "title": "IPod Nano - 8GB",
91
+ "variant_id": 808950810,
92
+ "variant_title": "Pink",
93
+ "vendor": "Apple"
94
+ }
95
+ ],
96
+ "name": "#450789469",
97
+ "note_attributes": [
98
+ {
99
+ "name": "custom engraving",
100
+ "value": "Happy Birthday"
101
+ },
102
+ {
103
+ "name": "colour",
104
+ "value": "green"
105
+ }
106
+ ],
107
+ "discount_code": [
108
+ {
109
+ "code": "TENOFF",
110
+ "amount": "10.00"
111
+ }
112
+ ],
113
+ "tax_lines": [
114
+ {
115
+ "price": "11.94",
116
+ "rate": 0.06,
117
+ "title": "State Tax"
118
+ }
119
+ ],
120
+ "billing_address": {
121
+ "address1": "Chestnut Street 92",
122
+ "address2": "",
123
+ "city": "Louisville",
124
+ "company": null,
125
+ "country": "United States",
126
+ "first_name": "Bob",
127
+ "last_name": "Norman",
128
+ "latitude": "45.41634",
129
+ "longitude": "-75.6868",
130
+ "phone": "555-625-1199",
131
+ "province": "Kentucky",
132
+ "zip": "40202",
133
+ "name": "Bob Norman",
134
+ "country_code": "US",
135
+ "province_code": "KY"
136
+ },
137
+ "shipping_address": {
138
+ "address1": "Chestnut Street 92",
139
+ "address2": "",
140
+ "city": "Louisville",
141
+ "company": null,
142
+ "country": "United States",
143
+ "first_name": "Bob",
144
+ "last_name": "Norman",
145
+ "latitude": "45.41634",
146
+ "longitude": "-75.6868",
147
+ "phone": "555-625-1199",
148
+ "province": "Kentucky",
149
+ "zip": "40202",
150
+ "name": "Bob Norman",
151
+ "country_code": "US",
152
+ "province_code": "KY"
153
+ },
154
+ "customer_id": null,
155
+ "customer_locale": "en-CA",
156
+ "device_id": "12",
157
+ "order": null,
158
+ "order_id": null,
159
+ "order_status_url": ""
160
+ }
161
+ ]
162
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "collect": {
3
+ "id": 841564295,
4
+ "collection_id": 841564295,
5
+ "product_id": 632910392,
6
+ "featured": false,
7
+ "created_at": null,
8
+ "updated_at": null,
9
+ "position": 1,
10
+ "sort_value": "0000000001"
11
+ }
12
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "collection": {
3
+ "id": 1,
4
+ "handle": "test-collection",
5
+ "title": "test-collection",
6
+ "updated_at": "2016-03-17T16:58:37-04:00",
7
+ "body_html": null,
8
+ "published_at": "2016-03-17T16:58:37-04:00",
9
+ "sort_order": "alpha-asc",
10
+ "template_suffix": null,
11
+ "published_scope": "global",
12
+ "image": {
13
+ "created_at": "2016-03-17T16:58:37-04:00",
14
+ "src": "https:\/\/cdn.duodealer.com\/s\/files\/1\/0006\/9093\/3842\/collections\/fd43f2c8883f6e9b680e3295fd990d2c.gif?v=1458248317"
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "collection_id": 1,
3
+ "updated_at": "2017-01-09T13:59:09-05:00",
4
+ "body_html": null,
5
+ "default_product_image": null,
6
+ "handle": "frontpage",
7
+ "image": null,
8
+ "title": "Home page",
9
+ "sort_order": "alpha-asc",
10
+ "published_at": "2017-01-09T13:59:09-05:00"
11
+ }