ruby_shopify_api 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (351) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.github/CODEOWNERS +1 -0
  4. data/.github/ISSUE_TEMPLATE.md +36 -0
  5. data/.github/probots.yml +2 -0
  6. data/.github/workflows/build.yml +43 -0
  7. data/.gitignore +15 -0
  8. data/.rubocop.yml +28 -0
  9. data/.rubocop_todo.yml +75 -0
  10. data/CHANGELOG-OLD.md +501 -0
  11. data/CHANGELOG.md +5 -0
  12. data/CONTRIBUTING.md +8 -0
  13. data/CONTRIBUTORS +3 -0
  14. data/Gemfile +10 -0
  15. data/Gemfile.lock +151 -0
  16. data/Gemfile_ar41 +5 -0
  17. data/Gemfile_ar50 +5 -0
  18. data/Gemfile_ar51 +5 -0
  19. data/Gemfile_ar60 +5 -0
  20. data/Gemfile_ar_main +5 -0
  21. data/LICENSE +20 -0
  22. data/README.md +649 -0
  23. data/RELEASING +17 -0
  24. data/Rakefile +55 -0
  25. data/SECURITY.md +59 -0
  26. data/dev.yml +11 -0
  27. data/docker-compose.yml +13 -0
  28. data/docs/_config.yml +1 -0
  29. data/docs/_includes/footer.html +28 -0
  30. data/docs/_includes/head.html +28 -0
  31. data/docs/_layouts/index.html +57 -0
  32. data/docs/graphql.md +241 -0
  33. data/docs/index.md +639 -0
  34. data/lib/active_resource/connection_ext.rb +11 -0
  35. data/lib/active_resource/detailed_log_subscriber.rb +55 -0
  36. data/lib/active_resource/json_errors.rb +37 -0
  37. data/lib/shopify_api/api_access.rb +57 -0
  38. data/lib/shopify_api/api_version.rb +206 -0
  39. data/lib/shopify_api/connection.rb +36 -0
  40. data/lib/shopify_api/countable.rb +15 -0
  41. data/lib/shopify_api/disable_prefix_check.rb +31 -0
  42. data/lib/shopify_api/events.rb +8 -0
  43. data/lib/shopify_api/graphql/http_client.rb +22 -0
  44. data/lib/shopify_api/graphql/railtie.rb +17 -0
  45. data/lib/shopify_api/graphql/task.rake +100 -0
  46. data/lib/shopify_api/graphql.rb +103 -0
  47. data/lib/shopify_api/hmac_params.rb +33 -0
  48. data/lib/shopify_api/limits.rb +77 -0
  49. data/lib/shopify_api/message_enricher.rb +25 -0
  50. data/lib/shopify_api/meta.rb +14 -0
  51. data/lib/shopify_api/metafields.rb +21 -0
  52. data/lib/shopify_api/paginated_collection.rb +69 -0
  53. data/lib/shopify_api/pagination_link_headers.rb +34 -0
  54. data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
  55. data/lib/shopify_api/resources/access_scope.rb +10 -0
  56. data/lib/shopify_api/resources/access_token.rb +9 -0
  57. data/lib/shopify_api/resources/address.rb +5 -0
  58. data/lib/shopify_api/resources/announcement.rb +5 -0
  59. data/lib/shopify_api/resources/api_permission.rb +9 -0
  60. data/lib/shopify_api/resources/application_charge.rb +16 -0
  61. data/lib/shopify_api/resources/application_credit.rb +5 -0
  62. data/lib/shopify_api/resources/array_base.rb +13 -0
  63. data/lib/shopify_api/resources/article.rb +22 -0
  64. data/lib/shopify_api/resources/asset.rb +101 -0
  65. data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
  66. data/lib/shopify_api/resources/base.rb +166 -0
  67. data/lib/shopify_api/resources/billing_address.rb +5 -0
  68. data/lib/shopify_api/resources/blog.rb +11 -0
  69. data/lib/shopify_api/resources/carrier_service.rb +5 -0
  70. data/lib/shopify_api/resources/cart.rb +5 -0
  71. data/lib/shopify_api/resources/checkout.rb +30 -0
  72. data/lib/shopify_api/resources/collect.rb +7 -0
  73. data/lib/shopify_api/resources/collection.rb +14 -0
  74. data/lib/shopify_api/resources/collection_listing.rb +19 -0
  75. data/lib/shopify_api/resources/collection_publication.rb +10 -0
  76. data/lib/shopify_api/resources/comment.rb +24 -0
  77. data/lib/shopify_api/resources/country.rb +5 -0
  78. data/lib/shopify_api/resources/currency.rb +6 -0
  79. data/lib/shopify_api/resources/custom_collection.rb +20 -0
  80. data/lib/shopify_api/resources/customer.rb +30 -0
  81. data/lib/shopify_api/resources/customer_group.rb +6 -0
  82. data/lib/shopify_api/resources/customer_invite.rb +5 -0
  83. data/lib/shopify_api/resources/customer_saved_search.rb +12 -0
  84. data/lib/shopify_api/resources/discount_code.rb +10 -0
  85. data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
  86. data/lib/shopify_api/resources/draft_order.rb +15 -0
  87. data/lib/shopify_api/resources/draft_order_invoice.rb +5 -0
  88. data/lib/shopify_api/resources/event.rb +9 -0
  89. data/lib/shopify_api/resources/fulfillment.rb +56 -0
  90. data/lib/shopify_api/resources/fulfillment_event.rb +16 -0
  91. data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
  92. data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
  93. data/lib/shopify_api/resources/fulfillment_request.rb +16 -0
  94. data/lib/shopify_api/resources/fulfillment_service.rb +5 -0
  95. data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
  96. data/lib/shopify_api/resources/gift_card.rb +8 -0
  97. data/lib/shopify_api/resources/image.rb +17 -0
  98. data/lib/shopify_api/resources/inventory_item.rb +6 -0
  99. data/lib/shopify_api/resources/inventory_level.rb +54 -0
  100. data/lib/shopify_api/resources/line_item.rb +15 -0
  101. data/lib/shopify_api/resources/location.rb +8 -0
  102. data/lib/shopify_api/resources/marketing_event.rb +11 -0
  103. data/lib/shopify_api/resources/metafield.rb +14 -0
  104. data/lib/shopify_api/resources/note_attribute.rb +5 -0
  105. data/lib/shopify_api/resources/option.rb +5 -0
  106. data/lib/shopify_api/resources/order.rb +44 -0
  107. data/lib/shopify_api/resources/order_risk.rb +9 -0
  108. data/lib/shopify_api/resources/page.rb +7 -0
  109. data/lib/shopify_api/resources/payment.rb +7 -0
  110. data/lib/shopify_api/resources/payment_details.rb +5 -0
  111. data/lib/shopify_api/resources/ping.rb +3 -0
  112. data/lib/shopify_api/resources/policy.rb +8 -0
  113. data/lib/shopify_api/resources/price_rule.rb +8 -0
  114. data/lib/shopify_api/resources/product.rb +59 -0
  115. data/lib/shopify_api/resources/product_listing.rb +17 -0
  116. data/lib/shopify_api/resources/product_publication.rb +10 -0
  117. data/lib/shopify_api/resources/province.rb +6 -0
  118. data/lib/shopify_api/resources/publication.rb +5 -0
  119. data/lib/shopify_api/resources/receipt.rb +5 -0
  120. data/lib/shopify_api/resources/recurring_application_charge.rb +34 -0
  121. data/lib/shopify_api/resources/redirect.rb +5 -0
  122. data/lib/shopify_api/resources/refund.rb +15 -0
  123. data/lib/shopify_api/resources/report.rb +5 -0
  124. data/lib/shopify_api/resources/resource_feedback.rb +19 -0
  125. data/lib/shopify_api/resources/rule.rb +5 -0
  126. data/lib/shopify_api/resources/script_tag.rb +5 -0
  127. data/lib/shopify_api/resources/shipping_address.rb +5 -0
  128. data/lib/shopify_api/resources/shipping_line.rb +5 -0
  129. data/lib/shopify_api/resources/shipping_rate.rb +7 -0
  130. data/lib/shopify_api/resources/shipping_zone.rb +5 -0
  131. data/lib/shopify_api/resources/shop.rb +26 -0
  132. data/lib/shopify_api/resources/smart_collection.rb +15 -0
  133. data/lib/shopify_api/resources/storefront_access_token.rb +5 -0
  134. data/lib/shopify_api/resources/tax_line.rb +5 -0
  135. data/lib/shopify_api/resources/tax_service.rb +5 -0
  136. data/lib/shopify_api/resources/tender_transaction.rb +6 -0
  137. data/lib/shopify_api/resources/theme.rb +5 -0
  138. data/lib/shopify_api/resources/transaction.rb +6 -0
  139. data/lib/shopify_api/resources/usage_charge.rb +6 -0
  140. data/lib/shopify_api/resources/user.rb +5 -0
  141. data/lib/shopify_api/resources/variant.rb +43 -0
  142. data/lib/shopify_api/resources/webhook.rb +5 -0
  143. data/lib/shopify_api/resources.rb +4 -0
  144. data/lib/shopify_api/session.rb +203 -0
  145. data/lib/shopify_api/version.rb +4 -0
  146. data/lib/shopify_api.rb +45 -0
  147. data/lib/verify_docs.rb +8 -0
  148. data/service.yml +2 -0
  149. data/shipit.rubygems.yml +1 -0
  150. data/shopify_api.gemspec +47 -0
  151. data/test/abandoned_checkouts_test.rb +29 -0
  152. data/test/access_scope_test.rb +23 -0
  153. data/test/access_token_test.rb +20 -0
  154. data/test/active_resource/json_errors_test.rb +19 -0
  155. data/test/api_access_test.rb +153 -0
  156. data/test/api_permission_test.rb +9 -0
  157. data/test/api_version_test.rb +157 -0
  158. data/test/application_charge_test.rb +82 -0
  159. data/test/application_credit_test.rb +36 -0
  160. data/test/article_test.rb +72 -0
  161. data/test/asset_test.rb +26 -0
  162. data/test/assigned_fulfillment_order_test.rb +78 -0
  163. data/test/base_test.rb +213 -0
  164. data/test/blog_test.rb +9 -0
  165. data/test/carrier_service_test.rb +18 -0
  166. data/test/cart_test.rb +14 -0
  167. data/test/checkouts_test.rb +77 -0
  168. data/test/collect_test.rb +10 -0
  169. data/test/collection_listing_test.rb +84 -0
  170. data/test/collection_publication_test.rb +40 -0
  171. data/test/collection_test.rb +50 -0
  172. data/test/countable_test.rb +14 -0
  173. data/test/currency_test.rb +21 -0
  174. data/test/custom_collection_test.rb +10 -0
  175. data/test/customer_saved_search_test.rb +37 -0
  176. data/test/customer_test.rb +58 -0
  177. data/test/detailed_log_subscriber_test.rb +143 -0
  178. data/test/discount_code_batch_test.rb +41 -0
  179. data/test/discount_code_test.rb +59 -0
  180. data/test/draft_order_test.rb +167 -0
  181. data/test/fixtures/abandoned_checkout.json +184 -0
  182. data/test/fixtures/abandoned_checkouts.json +186 -0
  183. data/test/fixtures/access_scopes.json +10 -0
  184. data/test/fixtures/access_token_delegate.json +4 -0
  185. data/test/fixtures/api_versions.json +38 -0
  186. data/test/fixtures/apis.json +42 -0
  187. data/test/fixtures/application_charge.json +16 -0
  188. data/test/fixtures/application_charges.json +57 -0
  189. data/test/fixtures/application_credit.json +12 -0
  190. data/test/fixtures/application_credits.json +24 -0
  191. data/test/fixtures/article.json +15 -0
  192. data/test/fixtures/articles.json +39 -0
  193. data/test/fixtures/asset.json +9 -0
  194. data/test/fixtures/assets.json +136 -0
  195. data/test/fixtures/assigned_fulfillment_orders.json +80 -0
  196. data/test/fixtures/authors.json +1 -0
  197. data/test/fixtures/blog.json +13 -0
  198. data/test/fixtures/blogs.json +13 -0
  199. data/test/fixtures/carrier_service.json +9 -0
  200. data/test/fixtures/carts.json +43 -0
  201. data/test/fixtures/checkout.json +160 -0
  202. data/test/fixtures/checkouts.json +162 -0
  203. data/test/fixtures/collect.json +12 -0
  204. data/test/fixtures/collection.json +17 -0
  205. data/test/fixtures/collection_listing.json +11 -0
  206. data/test/fixtures/collection_listing_product_ids.json +1 -0
  207. data/test/fixtures/collection_listing_product_ids2.json +1 -0
  208. data/test/fixtures/collection_listings.json +13 -0
  209. data/test/fixtures/collection_products.json +47 -0
  210. data/test/fixtures/collection_publication.json +11 -0
  211. data/test/fixtures/collection_publications.json +13 -0
  212. data/test/fixtures/currencies.json +25 -0
  213. data/test/fixtures/custom_collection.json +17 -0
  214. data/test/fixtures/customer_invite.json +9 -0
  215. data/test/fixtures/customer_saved_search.json +9 -0
  216. data/test/fixtures/customer_saved_search_customers.json +60 -0
  217. data/test/fixtures/customers.json +59 -0
  218. data/test/fixtures/customers_account_activation_url.json +3 -0
  219. data/test/fixtures/customers_search.json +60 -0
  220. data/test/fixtures/discount_code.json +10 -0
  221. data/test/fixtures/discount_code_batch.json +14 -0
  222. data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
  223. data/test/fixtures/discount_codes.json +12 -0
  224. data/test/fixtures/draft_order.json +159 -0
  225. data/test/fixtures/draft_order_completed.json +159 -0
  226. data/test/fixtures/draft_order_invoice.json +9 -0
  227. data/test/fixtures/draft_orders.json +161 -0
  228. data/test/fixtures/engagement.json +15 -0
  229. data/test/fixtures/events.json +31 -0
  230. data/test/fixtures/fulfillment.json +49 -0
  231. data/test/fixtures/fulfillment_event.json +12 -0
  232. data/test/fixtures/fulfillment_order.json +39 -0
  233. data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
  234. data/test/fixtures/fulfillment_orders.json +80 -0
  235. data/test/fixtures/fulfillment_request.json +28 -0
  236. data/test/fixtures/fulfillment_service.json +10 -0
  237. data/test/fixtures/fulfillments.json +53 -0
  238. data/test/fixtures/gift_card.json +20 -0
  239. data/test/fixtures/gift_card_disabled.json +20 -0
  240. data/test/fixtures/graphql/2019-10.json +1083 -0
  241. data/test/fixtures/graphql/dummy_schema.rb +16 -0
  242. data/test/fixtures/graphql/unstable.json +1083 -0
  243. data/test/fixtures/image.json +10 -0
  244. data/test/fixtures/images.json +20 -0
  245. data/test/fixtures/inventory_level.json +7 -0
  246. data/test/fixtures/inventory_levels.json +24 -0
  247. data/test/fixtures/marketing_event.json +28 -0
  248. data/test/fixtures/marketing_events.json +54 -0
  249. data/test/fixtures/metafield.json +12 -0
  250. data/test/fixtures/metafields.json +34 -0
  251. data/test/fixtures/order.json +297 -0
  252. data/test/fixtures/order_risk.json +14 -0
  253. data/test/fixtures/order_risks.json +28 -0
  254. data/test/fixtures/order_with_properties.json +373 -0
  255. data/test/fixtures/orders.json +299 -0
  256. data/test/fixtures/payment.json +7 -0
  257. data/test/fixtures/payments.json +9 -0
  258. data/test/fixtures/ping/conversation.json +1 -0
  259. data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
  260. data/test/fixtures/ping/message.json +1 -0
  261. data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
  262. data/test/fixtures/policies.json +8 -0
  263. data/test/fixtures/price_rule.json +27 -0
  264. data/test/fixtures/price_rules.json +28 -0
  265. data/test/fixtures/product.json +116 -0
  266. data/test/fixtures/product_listing.json +86 -0
  267. data/test/fixtures/product_listing_product_ids.json +1 -0
  268. data/test/fixtures/product_listing_product_ids2.json +1 -0
  269. data/test/fixtures/product_listings.json +174 -0
  270. data/test/fixtures/product_publication.json +11 -0
  271. data/test/fixtures/product_publications.json +13 -0
  272. data/test/fixtures/publications.json +9 -0
  273. data/test/fixtures/recurring_application_charge.json +22 -0
  274. data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
  275. data/test/fixtures/recurring_application_charges.json +106 -0
  276. data/test/fixtures/redirect.json +7 -0
  277. data/test/fixtures/refund.json +112 -0
  278. data/test/fixtures/report.json +9 -0
  279. data/test/fixtures/reports.json +11 -0
  280. data/test/fixtures/script_tag.json +10 -0
  281. data/test/fixtures/script_tags.json +18 -0
  282. data/test/fixtures/shipping_rates.json +12 -0
  283. data/test/fixtures/shipping_zones.json +315 -0
  284. data/test/fixtures/shop.json +26 -0
  285. data/test/fixtures/smart_collection.json +21 -0
  286. data/test/fixtures/smart_collection_products.json +155 -0
  287. data/test/fixtures/storefront_access_token.json +9 -0
  288. data/test/fixtures/storefront_access_tokens.json +18 -0
  289. data/test/fixtures/tags.json +1 -0
  290. data/test/fixtures/tax_service.json +9 -0
  291. data/test/fixtures/tender_transactions.json +52 -0
  292. data/test/fixtures/transaction.json +29 -0
  293. data/test/fixtures/usage_charge.json +11 -0
  294. data/test/fixtures/usage_charges.json +23 -0
  295. data/test/fixtures/user.json +21 -0
  296. data/test/fixtures/users.json +42 -0
  297. data/test/fixtures/variant.json +23 -0
  298. data/test/fixtures/variants.json +88 -0
  299. data/test/fixtures/webhook.json +10 -0
  300. data/test/fixtures/webhooks.json +18 -0
  301. data/test/fulfillment_event_test.rb +74 -0
  302. data/test/fulfillment_order_test.rb +530 -0
  303. data/test/fulfillment_order_test_helper.rb +8 -0
  304. data/test/fulfillment_request_test.rb +35 -0
  305. data/test/fulfillment_service_test.rb +18 -0
  306. data/test/fulfillment_test.rb +239 -0
  307. data/test/fulfillment_v2_test.rb +66 -0
  308. data/test/gift_card_test.rb +24 -0
  309. data/test/graphql/http_client_test.rb +26 -0
  310. data/test/graphql_test.rb +190 -0
  311. data/test/hmac_params_test.rb +25 -0
  312. data/test/image_test.rb +41 -0
  313. data/test/inventory_level_test.rb +68 -0
  314. data/test/lib/webmock_extensions/last_request.rb +16 -0
  315. data/test/limits_test.rb +39 -0
  316. data/test/location_test.rb +15 -0
  317. data/test/marketing_event_test.rb +68 -0
  318. data/test/message_enricher_test.rb +45 -0
  319. data/test/meta_test.rb +47 -0
  320. data/test/metafield_test.rb +56 -0
  321. data/test/order_risk_test.rb +47 -0
  322. data/test/order_test.rb +140 -0
  323. data/test/pagination_test.rb +290 -0
  324. data/test/payment_test.rb +19 -0
  325. data/test/policy_test.rb +20 -0
  326. data/test/price_rule_test.rb +70 -0
  327. data/test/product_listing_test.rb +97 -0
  328. data/test/product_publication_test.rb +40 -0
  329. data/test/product_test.rb +111 -0
  330. data/test/publication_test.rb +12 -0
  331. data/test/recurring_application_charge_test.rb +204 -0
  332. data/test/redirect_test.rb +10 -0
  333. data/test/refund_test.rb +37 -0
  334. data/test/report_test.rb +37 -0
  335. data/test/resource_feedback_test.rb +43 -0
  336. data/test/script_tag_test.rb +31 -0
  337. data/test/session_test.rb +640 -0
  338. data/test/shipping_rate_test.rb +17 -0
  339. data/test/shipping_zone_test.rb +11 -0
  340. data/test/shop_test.rb +82 -0
  341. data/test/smart_collection_test.rb +11 -0
  342. data/test/storefront_access_token_test.rb +30 -0
  343. data/test/tax_service_test.rb +12 -0
  344. data/test/tender_transaction_test.rb +18 -0
  345. data/test/test_helper.rb +126 -0
  346. data/test/transaction_test.rb +18 -0
  347. data/test/usage_charge_test.rb +25 -0
  348. data/test/user_test.rb +18 -0
  349. data/test/variant_test.rb +73 -0
  350. data/test/webhook_test.rb +24 -0
  351. metadata +555 -0
@@ -0,0 +1,16 @@
1
+ {
2
+ "application_charge": {
3
+ "api_client_id": 861378,
4
+ "created_at": "2015-07-10T15:03:51+10:00",
5
+ "id": 803742,
6
+ "name": "iPod Cleaning",
7
+ "price": "5.00",
8
+ "return_url": "http:\/\/google.com",
9
+ "status": "pending",
10
+ "test": null,
11
+ "updated_at": "2015-07-10T15:03:51+10:00",
12
+ "charge_type": null,
13
+ "decorated_return_url": "http:\/\/google.com?charge_id=803742",
14
+ "confirmation_url": "https://this-is-my-test-shop.myshopify.com\/admin\/charges\/803742\/confirm_application_charge?signature=BAhpA55DDA%3D%3D--55b44e274e438c619be4631c804abcbcb6ee915a"
15
+ }
16
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "application_charges": [
3
+ {
4
+ "api_client_id": 861378,
5
+ "created_at": "2015-07-10T15:16:14+10:00",
6
+ "id": 803750,
7
+ "name": "Magic Mouse",
8
+ "price": "99.00",
9
+ "return_url": "http:\/\/google.com",
10
+ "status": "declined",
11
+ "test": null,
12
+ "updated_at": "2015-07-10T15:18:09+10:00",
13
+ "charge_type": null,
14
+ "decorated_return_url": "http:\/\/google.com?charge_id=803750"
15
+ },
16
+ {
17
+ "api_client_id": 861378,
18
+ "created_at": "2015-07-10T15:10:10+10:00",
19
+ "id": 803748,
20
+ "name": "Screen Replacement",
21
+ "price": "499.00",
22
+ "return_url": "http:\/\/google.com",
23
+ "status": "pending",
24
+ "test": null,
25
+ "updated_at": "2015-07-10T15:10:10+10:00",
26
+ "charge_type": null,
27
+ "decorated_return_url": "http:\/\/google.com?charge_id=803748",
28
+ "confirmation_url": "https:\/\/this-is-my-test-shop.myshopify.com\/admin\/charges\/803748\/confirm_application_charge?signature=BAhpA6RDDA%3D%3D--ef4769e2c1149de0ed19dee9ecddaa155baa7baf"
29
+ },
30
+ {
31
+ "api_client_id": 861378,
32
+ "created_at": "2015-07-10T15:03:51+10:00",
33
+ "id": 803742,
34
+ "name": "iPod Cleaning",
35
+ "price": "5.00",
36
+ "return_url": "http:\/\/google.com",
37
+ "status": "expired",
38
+ "test": null,
39
+ "updated_at": "2015-07-10T15:03:51+10:00",
40
+ "charge_type": null,
41
+ "decorated_return_url": "http:\/\/google.com?charge_id=803742"
42
+ },
43
+ {
44
+ "api_client_id": 861378,
45
+ "created_at": "2015-07-10T15:03:51+10:00",
46
+ "id": 803740,
47
+ "name": "iPhone Case",
48
+ "price": "23.00",
49
+ "return_url": "http:\/\/google.com",
50
+ "status": "accepted",
51
+ "test": null,
52
+ "updated_at": "2015-07-10T15:03:51+10:00",
53
+ "charge_type": null,
54
+ "decorated_return_url": "http:\/\/google.com?charge_id=803740"
55
+ }
56
+ ]
57
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "application_credit": {
3
+ "id": 803742,
4
+ "api_client_id": 861378,
5
+ "partner_id": 549861,
6
+ "shop_id": 487168,
7
+ "amount": "5.00",
8
+ "description": "refund for application charge",
9
+ "created_at": "2015-07-10T15:03:51+10:00",
10
+ "updated_at": "2015-07-10T15:03:51+10:00"
11
+ }
12
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "application_charges": [
3
+ {
4
+ "id": 803742,
5
+ "api_client_id": 861378,
6
+ "shop_id": 487168,
7
+ "amount": "5.00",
8
+ "billing_status": "pending",
9
+ "description": "refund for application charge",
10
+ "created_at": "2015-07-10T15:03:51+10:00",
11
+ "updated_at": "2015-07-10T15:03:51+10:00"
12
+ },
13
+ {
14
+ "id": 803743,
15
+ "api_client_id": 861378,
16
+ "shop_id": 487168,
17
+ "amount": "10.00",
18
+ "billing_status": "pending",
19
+ "description": "refund for application charge",
20
+ "created_at": "2015-07-10T15:03:51+10:00",
21
+ "updated_at": "2015-07-10T15:03:51+10:00"
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "article": {
3
+ "author": "Shopify",
4
+ "blog_id": 1008414260,
5
+ "body_html": null,
6
+ "created_at": "2012-07-06T13:57:28-04:00",
7
+ "id": 6242736,
8
+ "published_at": "2012-07-06T13:57:28-04:00",
9
+ "summary_html": null,
10
+ "title": "First Post",
11
+ "updated_at": "2012-07-06T13:57:51-04:00",
12
+ "user_id": null,
13
+ "tags": "consequuntur, cupiditate, repellendus"
14
+ }
15
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "articles": [{
3
+ "author": "Shopify",
4
+ "blog_id": 1008414260,
5
+ "body_html": null,
6
+ "created_at": "2012-07-06T13:57:28-04:00",
7
+ "id": 6242736,
8
+ "published_at": "2012-07-06T13:57:28-04:00",
9
+ "summary_html": null,
10
+ "title": "First Post",
11
+ "updated_at": "2012-07-06T13:57:51-04:00",
12
+ "user_id": null,
13
+ "tags": "consequuntur, cupiditate, repellendus"
14
+ }, {
15
+ "author": "development shop",
16
+ "blog_id": 1008414260,
17
+ "body_html": null,
18
+ "created_at": "2013-04-21T18:10:35-04:00",
19
+ "id": 7739673,
20
+ "published_at": "2013-04-21T18:10:22-04:00",
21
+ "summary_html": null,
22
+ "title": "My second blog post",
23
+ "updated_at": "2013-04-21T18:10:35-04:00",
24
+ "user_id": 2221540,
25
+ "tags": ""
26
+ }, {
27
+ "author": "development shop",
28
+ "blog_id": 1008414260,
29
+ "body_html": null,
30
+ "created_at": "2013-04-21T18:11:19-04:00",
31
+ "id": 7739683,
32
+ "published_at": "2013-04-21T18:10:45-04:00",
33
+ "summary_html": null,
34
+ "title": "50% off sale",
35
+ "updated_at": "2013-04-21T18:11:19-04:00",
36
+ "user_id": 2221540,
37
+ "tags": ""
38
+ }]
39
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "asset": {
3
+ "created_at": "2010-07-12T15:31:50-04:00",
4
+ "updated_at": "2010-07-12T15:31:50-04:00",
5
+ "public_url": null,
6
+ "value": "<!-- LIST 3 PER ROW -->\n<h2>Featured Products</h2>\n<table id=\"products\" cellspacing=\"0\" cellpadding=\"0\">\n{% tablerow product in collections.frontpage.products cols:3 %}\n <a href=\"{{product.url}}\">{{ product.featured_image | product_img_url: 'small' | img_tag }}</a>\n <h3><a href=\"{{product.url}}\">{{product.title}}</a></h3>\n <ul class=\"attributes\">\n <li><span class=\"money\">{{product.price_min | money}}</span></li>\n </ul>\n{% endtablerow %}\n</table>\n<!-- /LIST 3 PER ROW -->\n\n <div id=\"articles\">\n \t{% assign article = pages.frontpage %}\n\n <div class=\"article\">\n {% if article.content != \"\" %}\n\t\t <h3>{{ article.title }}</h3>\n <div class=\"article-body textile\">\n \t\t {{ article.content }}\n \t\t</div>\n \t{% else %}\n <div class=\"article-body textile\">\n \t In <em>Admin &gt; Blogs &amp; Pages</em>, create a page with the handle <strong><code>frontpage</code></strong> and it will show up here.<br />\n \t {{ \"Learn more about handles\" | link_to \"http://wiki.shopify.com/Handle\" }}\n </div>\n \t{% endif %}\n </div>\n\n </div>\n\n",
7
+ "key": "templates/index.liquid"
8
+ }
9
+ }
@@ -0,0 +1,136 @@
1
+ {
2
+ "assets": [
3
+ {
4
+ "created_at": "2010-07-12T15:31:50-04:00",
5
+ "updated_at": "2010-07-12T15:31:50-04:00",
6
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body-green.gif?1",
7
+ "key": "assets/bg-body-green.gif"
8
+ },
9
+ {
10
+ "created_at": "2010-07-12T15:31:50-04:00",
11
+ "updated_at": "2010-07-12T15:31:50-04:00",
12
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body-orange.gif?1",
13
+ "key": "assets/bg-body-orange.gif"
14
+ },
15
+ {
16
+ "created_at": "2010-07-12T15:31:50-04:00",
17
+ "updated_at": "2010-07-12T15:31:50-04:00",
18
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body-pink.gif?1",
19
+ "key": "assets/bg-body-pink.gif"
20
+ },
21
+ {
22
+ "created_at": "2010-07-12T15:31:50-04:00",
23
+ "updated_at": "2010-07-12T15:31:50-04:00",
24
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body.gif?1",
25
+ "key": "assets/bg-body.gif"
26
+ },
27
+ {
28
+ "created_at": "2010-07-12T15:31:50-04:00",
29
+ "updated_at": "2010-07-12T15:31:50-04:00",
30
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-content.gif?1",
31
+ "key": "assets/bg-content.gif"
32
+ },
33
+ {
34
+ "created_at": "2010-07-12T15:31:50-04:00",
35
+ "updated_at": "2010-07-12T15:31:50-04:00",
36
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-footer.gif?1",
37
+ "key": "assets/bg-footer.gif"
38
+ },
39
+ {
40
+ "created_at": "2010-07-12T15:31:50-04:00",
41
+ "updated_at": "2010-07-12T15:31:50-04:00",
42
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-main.gif?1",
43
+ "key": "assets/bg-main.gif"
44
+ },
45
+ {
46
+ "created_at": "2010-07-12T15:31:50-04:00",
47
+ "updated_at": "2010-07-12T15:31:50-04:00",
48
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-sidebar.gif?1",
49
+ "key": "assets/bg-sidebar.gif"
50
+ },
51
+ {
52
+ "created_at": "2010-07-12T15:31:50-04:00",
53
+ "updated_at": "2010-07-12T15:31:50-04:00",
54
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/shop.css?1",
55
+ "key": "assets/shop.css"
56
+ },
57
+ {
58
+ "created_at": "2010-07-12T15:31:50-04:00",
59
+ "updated_at": "2010-07-12T15:31:50-04:00",
60
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/shop.css.liquid?1",
61
+ "key": "assets/shop.css.liquid"
62
+ },
63
+ {
64
+ "created_at": "2010-07-12T15:31:50-04:00",
65
+ "updated_at": "2010-07-12T15:31:50-04:00",
66
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/shop.js?1",
67
+ "key": "assets/shop.js"
68
+ },
69
+ {
70
+ "created_at": "2010-07-12T15:31:50-04:00",
71
+ "updated_at": "2010-07-12T15:31:50-04:00",
72
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/sidebar-devider.gif?1",
73
+ "key": "assets/sidebar-devider.gif"
74
+ },
75
+ {
76
+ "created_at": "2010-07-12T15:31:50-04:00",
77
+ "updated_at": "2010-07-12T15:31:50-04:00",
78
+ "public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/sidebar-menu.jpg?1",
79
+ "key": "assets/sidebar-menu.jpg"
80
+ },
81
+ {
82
+ "created_at": "2010-07-12T15:31:50-04:00",
83
+ "updated_at": "2010-07-12T15:31:50-04:00",
84
+ "public_url": null,
85
+ "key": "config/settings.html"
86
+ },
87
+ {
88
+ "created_at": "2010-07-12T15:31:50-04:00",
89
+ "updated_at": "2010-07-12T15:31:50-04:00",
90
+ "public_url": null,
91
+ "key": "layout/theme.liquid"
92
+ },
93
+ {
94
+ "created_at": "2010-07-12T15:31:50-04:00",
95
+ "updated_at": "2010-07-12T15:31:50-04:00",
96
+ "public_url": null,
97
+ "key": "templates/article.liquid"
98
+ },
99
+ {
100
+ "created_at": "2010-07-12T15:31:50-04:00",
101
+ "updated_at": "2010-07-12T15:31:50-04:00",
102
+ "public_url": null,
103
+ "key": "templates/blog.liquid"
104
+ },
105
+ {
106
+ "created_at": "2010-07-12T15:31:50-04:00",
107
+ "updated_at": "2010-07-12T15:31:50-04:00",
108
+ "public_url": null,
109
+ "key": "templates/cart.liquid"
110
+ },
111
+ {
112
+ "created_at": "2010-07-12T15:31:50-04:00",
113
+ "updated_at": "2010-07-12T15:31:50-04:00",
114
+ "public_url": null,
115
+ "key": "templates/collection.liquid"
116
+ },
117
+ {
118
+ "created_at": "2010-07-12T15:31:50-04:00",
119
+ "updated_at": "2010-07-12T15:31:50-04:00",
120
+ "public_url": null,
121
+ "key": "templates/index.liquid"
122
+ },
123
+ {
124
+ "created_at": "2010-07-12T15:31:50-04:00",
125
+ "updated_at": "2010-07-12T15:31:50-04:00",
126
+ "public_url": null,
127
+ "key": "templates/page.liquid"
128
+ },
129
+ {
130
+ "created_at": "2010-07-12T15:31:50-04:00",
131
+ "updated_at": "2010-07-12T15:31:50-04:00",
132
+ "public_url": null,
133
+ "key": "templates/product.liquid"
134
+ }
135
+ ]
136
+ }
@@ -0,0 +1,80 @@
1
+ [
2
+ {
3
+ "id": 519788021,
4
+ "order_id": 450789469,
5
+ "fulfillment_service_handle": "shipwire",
6
+ "status": "in_progress",
7
+ "requires_shipping": true,
8
+ "is_not_deleted": true,
9
+ "deleted_at": null,
10
+ "created_at": "2016-07-12T11:23:42-04:00",
11
+ "updated_at": "2016-07-12T11:23:42-04:00",
12
+ "happened_at": "2016-07-12T11:23:42-04:00",
13
+ "assigned_location_id": 905684977,
14
+ "request_status": "cancellation_accepted",
15
+ "delivery_category": null,
16
+ "fulfill_at": null,
17
+ "fulfillment_order_line_items": [
18
+ {
19
+ "id": 519788021,
20
+ "shop_id": 690933842,
21
+ "fulfillment_order_id": 519788021,
22
+ "line_item_id": 466157049,
23
+ "variant_id": 43729076,
24
+ "inventory_item_id": 808950810,
25
+ "inventory_commitment_id": 273471403,
26
+ "quantity": 1,
27
+ "sku": "IPOD2008GREEN",
28
+ "vendor": null,
29
+ "variant_title": "green",
30
+ "product_title": "IPod Nano - 8gb",
31
+ "pre_tax_price": 398.00,
32
+ "currency": "USD",
33
+ "properties": null,
34
+ "is_not_deleted": true,
35
+ "deleted_at": null,
36
+ "created_at": "2016-07-12T11:23:54-04:00",
37
+ "updated_at": "2016-07-12T11:23:54-04:00"
38
+ }
39
+ ]
40
+ },
41
+ {
42
+ "id": 519788022,
43
+ "order_id": 450789469,
44
+ "fulfillment_service_handle": "manual",
45
+ "status": "in_progress",
46
+ "requires_shipping": true,
47
+ "is_not_deleted": true,
48
+ "deleted_at": null,
49
+ "created_at": "2016-07-12T11:23:42-04:00",
50
+ "updated_at": "2016-07-12T11:23:42-04:00",
51
+ "happened_at": "2016-07-12T11:23:42-04:00",
52
+ "assigned_location_id": 905684977,
53
+ "request_status": "cancellation_accepted",
54
+ "delivery_category": null,
55
+ "fulfill_at": null,
56
+ "fulfillment_order_line_items": [
57
+ {
58
+ "id": 519788021,
59
+ "shop_id": 690933842,
60
+ "fulfillment_order_id": 519788021,
61
+ "line_item_id": 466157049,
62
+ "variant_id": 43729076,
63
+ "inventory_item_id": 808950810,
64
+ "inventory_commitment_id": 273471403,
65
+ "quantity": 1,
66
+ "sku": "IPOD2008RED",
67
+ "vendor": null,
68
+ "variant_title": "red",
69
+ "product_title": "IPod Nano - 8gb",
70
+ "pre_tax_price": 398.00,
71
+ "currency": "USD",
72
+ "properties": null,
73
+ "is_not_deleted": true,
74
+ "deleted_at": null,
75
+ "created_at": "2016-07-12T11:23:54-04:00",
76
+ "updated_at": "2016-07-12T11:23:54-04:00"
77
+ }
78
+ ]
79
+ }
80
+ ]
@@ -0,0 +1 @@
1
+ {"authors": ["Shopify", "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": "shopify"
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
+ }