shopify_api 9.5 → 10.0.1

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 (765) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +1 -1
  3. data/.github/ISSUE_TEMPLATE.md +1 -2
  4. data/.github/dependabot.yml +20 -0
  5. data/.github/probots.yml +1 -1
  6. data/.github/pull_request_template.md +20 -0
  7. data/.github/workflows/build.yml +19 -20
  8. data/.rubocop.yml +49 -18
  9. data/CHANGELOG.md +235 -212
  10. data/CONTRIBUTING.md +4 -3
  11. data/Gemfile +6 -4
  12. data/Gemfile.lock +103 -118
  13. data/LICENSE +2 -2
  14. data/README.md +92 -492
  15. data/RELEASING +1 -1
  16. data/Rakefile +14 -46
  17. data/SECURITY.md +2 -2
  18. data/bin/tapioca +29 -0
  19. data/dev.yml +22 -1
  20. data/docs/README.md +13 -0
  21. data/docs/getting_started.md +53 -0
  22. data/docs/issues.md +39 -0
  23. data/docs/usage/graphql.md +115 -0
  24. data/docs/usage/graphql_storefront.md +42 -0
  25. data/docs/usage/oauth.md +105 -0
  26. data/docs/usage/rest.md +137 -0
  27. data/docs/usage/session_storage.md +46 -0
  28. data/docs/usage/webhooks.md +98 -0
  29. data/lib/shopify_api/admin_versions.rb +20 -0
  30. data/lib/shopify_api/auth/associated_user.rb +36 -0
  31. data/lib/shopify_api/auth/auth_scopes.rb +75 -0
  32. data/lib/shopify_api/auth/file_session_storage.rb +70 -0
  33. data/lib/shopify_api/auth/jwt_payload.rb +69 -0
  34. data/lib/shopify_api/auth/oauth/auth_query.rb +47 -0
  35. data/lib/shopify_api/auth/oauth/session_cookie.rb +28 -0
  36. data/lib/shopify_api/auth/oauth.rb +129 -0
  37. data/lib/shopify_api/auth/session.rb +119 -0
  38. data/lib/shopify_api/auth/session_storage.rb +30 -0
  39. data/lib/shopify_api/clients/graphql/admin.rb +15 -0
  40. data/lib/shopify_api/clients/graphql/client.rb +40 -0
  41. data/lib/shopify_api/clients/graphql/storefront.rb +35 -0
  42. data/lib/shopify_api/clients/http_client.rb +100 -0
  43. data/lib/shopify_api/clients/http_request.rb +35 -0
  44. data/lib/shopify_api/clients/http_response.rb +66 -0
  45. data/lib/shopify_api/clients/rest/admin.rb +118 -0
  46. data/lib/shopify_api/context.rb +151 -0
  47. data/lib/shopify_api/errors/context_not_setup_error.rb +9 -0
  48. data/lib/shopify_api/errors/cookie_not_found_error.rb +9 -0
  49. data/lib/shopify_api/errors/http_response_error.rb +19 -0
  50. data/lib/shopify_api/errors/invalid_graphql_request_error.rb +9 -0
  51. data/lib/shopify_api/errors/invalid_http_request_error.rb +9 -0
  52. data/lib/shopify_api/errors/invalid_jwt_token_error.rb +9 -0
  53. data/lib/shopify_api/errors/invalid_oauth_error.rb +9 -0
  54. data/lib/shopify_api/errors/invalid_webhook_error.rb +9 -0
  55. data/lib/shopify_api/errors/invalid_webhook_registration_error.rb +9 -0
  56. data/lib/shopify_api/errors/max_http_retries_exceeded_error.rb +9 -0
  57. data/lib/shopify_api/errors/missing_jwt_token_error.rb +9 -0
  58. data/lib/shopify_api/errors/no_active_session_error.rb +9 -0
  59. data/lib/shopify_api/errors/no_session_cookie_error.rb +9 -0
  60. data/lib/shopify_api/errors/no_webhook_handler.rb +9 -0
  61. data/lib/shopify_api/errors/private_app_error.rb +9 -0
  62. data/lib/shopify_api/errors/request_access_token_error.rb +9 -0
  63. data/lib/shopify_api/errors/session_not_found_error.rb +9 -0
  64. data/lib/shopify_api/errors/session_storage_error.rb +9 -0
  65. data/lib/shopify_api/errors/unsupported_oauth_error.rb +9 -0
  66. data/lib/shopify_api/errors/unsupported_version_error.rb +9 -0
  67. data/lib/shopify_api/errors/webhook_registration_error.rb +9 -0
  68. data/lib/shopify_api/inflector.rb +17 -0
  69. data/lib/shopify_api/rest/base.rb +360 -0
  70. data/lib/shopify_api/rest/base_errors.rb +32 -0
  71. data/lib/shopify_api/rest/resources/2021_07/abandoned_checkout.rb +185 -0
  72. data/lib/shopify_api/rest/resources/2021_07/access_scope.rb +54 -0
  73. data/lib/shopify_api/rest/resources/2021_07/android_pay_key.rb +73 -0
  74. data/lib/shopify_api/rest/resources/2021_07/apple_pay_certificate.rb +101 -0
  75. data/lib/shopify_api/rest/resources/2021_07/application_charge.rb +100 -0
  76. data/lib/shopify_api/rest/resources/2021_07/application_credit.rb +83 -0
  77. data/lib/shopify_api/rest/resources/2021_07/article.rb +261 -0
  78. data/lib/shopify_api/rest/resources/2021_07/asset.rb +114 -0
  79. data/lib/shopify_api/rest/resources/2021_07/assigned_fulfillment_order.rb +75 -0
  80. data/lib/shopify_api/rest/resources/2021_07/balance.rb +46 -0
  81. data/lib/shopify_api/rest/resources/2021_07/blog.rb +158 -0
  82. data/lib/shopify_api/rest/resources/2021_07/cancellation_request.rb +79 -0
  83. data/lib/shopify_api/rest/resources/2021_07/carrier_service.rb +112 -0
  84. data/lib/shopify_api/rest/resources/2021_07/checkout.rb +205 -0
  85. data/lib/shopify_api/rest/resources/2021_07/collect.rb +138 -0
  86. data/lib/shopify_api/rest/resources/2021_07/collection.rb +106 -0
  87. data/lib/shopify_api/rest/resources/2021_07/collection_listing.rb +151 -0
  88. data/lib/shopify_api/rest/resources/2021_07/comment.rb +279 -0
  89. data/lib/shopify_api/rest/resources/2021_07/country.rb +133 -0
  90. data/lib/shopify_api/rest/resources/2021_07/currency.rb +53 -0
  91. data/lib/shopify_api/rest/resources/2021_07/custom_collection.rb +183 -0
  92. data/lib/shopify_api/rest/resources/2021_07/customer.rb +285 -0
  93. data/lib/shopify_api/rest/resources/2021_07/customer_address.rb +197 -0
  94. data/lib/shopify_api/rest/resources/2021_07/customer_saved_search.rb +165 -0
  95. data/lib/shopify_api/rest/resources/2021_07/deprecated_api_call.rb +53 -0
  96. data/lib/shopify_api/rest/resources/2021_07/discount_code.rb +215 -0
  97. data/lib/shopify_api/rest/resources/2021_07/dispute.rb +107 -0
  98. data/lib/shopify_api/rest/resources/2021_07/draft_order.rb +266 -0
  99. data/lib/shopify_api/rest/resources/2021_07/event.rb +144 -0
  100. data/lib/shopify_api/rest/resources/2021_07/fulfillment.rb +191 -0
  101. data/lib/shopify_api/rest/resources/2021_07/fulfillment_event.rb +162 -0
  102. data/lib/shopify_api/rest/resources/2021_07/fulfillment_order.rb +224 -0
  103. data/lib/shopify_api/rest/resources/2021_07/fulfillment_request.rb +79 -0
  104. data/lib/shopify_api/rest/resources/2021_07/fulfillment_service.rb +126 -0
  105. data/lib/shopify_api/rest/resources/2021_07/gift_card.rb +203 -0
  106. data/lib/shopify_api/rest/resources/2021_07/gift_card_adjustment.rb +114 -0
  107. data/lib/shopify_api/rest/resources/2021_07/image.rb +153 -0
  108. data/lib/shopify_api/rest/resources/2021_07/inventory_item.rb +104 -0
  109. data/lib/shopify_api/rest/resources/2021_07/inventory_level.rb +175 -0
  110. data/lib/shopify_api/rest/resources/2021_07/location.rb +163 -0
  111. data/lib/shopify_api/rest/resources/2021_07/locations_for_move.rb +52 -0
  112. data/lib/shopify_api/rest/resources/2021_07/marketing_event.rb +205 -0
  113. data/lib/shopify_api/rest/resources/2021_07/metafield.rb +338 -0
  114. data/lib/shopify_api/rest/resources/2021_07/mobile_platform_application.rb +106 -0
  115. data/lib/shopify_api/rest/resources/2021_07/order.rb +466 -0
  116. data/lib/shopify_api/rest/resources/2021_07/order_risk.rb +131 -0
  117. data/lib/shopify_api/rest/resources/2021_07/page.rb +190 -0
  118. data/lib/shopify_api/rest/resources/2021_07/payment.rb +136 -0
  119. data/lib/shopify_api/rest/resources/2021_07/payment_gateway.rb +139 -0
  120. data/lib/shopify_api/rest/resources/2021_07/payment_transaction.rb +103 -0
  121. data/lib/shopify_api/rest/resources/2021_07/payout.rb +93 -0
  122. data/lib/shopify_api/rest/resources/2021_07/policy.rb +65 -0
  123. data/lib/shopify_api/rest/resources/2021_07/price_rule.rb +219 -0
  124. data/lib/shopify_api/rest/resources/2021_07/product.rb +219 -0
  125. data/lib/shopify_api/rest/resources/2021_07/product_listing.rb +192 -0
  126. data/lib/shopify_api/rest/resources/2021_07/product_resource_feedback.rb +84 -0
  127. data/lib/shopify_api/rest/resources/2021_07/province.rb +128 -0
  128. data/lib/shopify_api/rest/resources/2021_07/recurring_application_charge.rb +163 -0
  129. data/lib/shopify_api/rest/resources/2021_07/redirect.rb +135 -0
  130. data/lib/shopify_api/rest/resources/2021_07/refund.rb +147 -0
  131. data/lib/shopify_api/rest/resources/2021_07/report.rb +117 -0
  132. data/lib/shopify_api/rest/resources/2021_07/resource_feedback.rb +69 -0
  133. data/lib/shopify_api/rest/resources/2021_07/script_tag.rb +151 -0
  134. data/lib/shopify_api/rest/resources/2021_07/shipping_zone.rb +79 -0
  135. data/lib/shopify_api/rest/resources/2021_07/shop.rb +214 -0
  136. data/lib/shopify_api/rest/resources/2021_07/smart_collection.rb +212 -0
  137. data/lib/shopify_api/rest/resources/2021_07/storefront_access_token.rb +83 -0
  138. data/lib/shopify_api/rest/resources/2021_07/tender_transaction.rb +89 -0
  139. data/lib/shopify_api/rest/resources/2021_07/theme.rb +116 -0
  140. data/lib/shopify_api/rest/resources/2021_07/transaction.rb +174 -0
  141. data/lib/shopify_api/rest/resources/2021_07/usage_charge.rb +93 -0
  142. data/lib/shopify_api/rest/resources/2021_07/user.rb +134 -0
  143. data/lib/shopify_api/rest/resources/2021_07/variant.rb +208 -0
  144. data/lib/shopify_api/rest/resources/2021_07/webhook.rb +164 -0
  145. data/lib/shopify_api/rest/resources/2021_10/abandoned_checkout.rb +185 -0
  146. data/lib/shopify_api/rest/resources/2021_10/access_scope.rb +54 -0
  147. data/lib/shopify_api/rest/resources/2021_10/android_pay_key.rb +73 -0
  148. data/lib/shopify_api/rest/resources/2021_10/apple_pay_certificate.rb +101 -0
  149. data/lib/shopify_api/rest/resources/2021_10/application_charge.rb +100 -0
  150. data/lib/shopify_api/rest/resources/2021_10/application_credit.rb +83 -0
  151. data/lib/shopify_api/rest/resources/2021_10/article.rb +261 -0
  152. data/lib/shopify_api/rest/resources/2021_10/asset.rb +114 -0
  153. data/lib/shopify_api/rest/resources/2021_10/assigned_fulfillment_order.rb +75 -0
  154. data/lib/shopify_api/rest/resources/2021_10/balance.rb +46 -0
  155. data/lib/shopify_api/rest/resources/2021_10/blog.rb +158 -0
  156. data/lib/shopify_api/rest/resources/2021_10/cancellation_request.rb +79 -0
  157. data/lib/shopify_api/rest/resources/2021_10/carrier_service.rb +112 -0
  158. data/lib/shopify_api/rest/resources/2021_10/checkout.rb +205 -0
  159. data/lib/shopify_api/rest/resources/2021_10/collect.rb +138 -0
  160. data/lib/shopify_api/rest/resources/2021_10/collection.rb +106 -0
  161. data/lib/shopify_api/rest/resources/2021_10/collection_listing.rb +151 -0
  162. data/lib/shopify_api/rest/resources/2021_10/comment.rb +279 -0
  163. data/lib/shopify_api/rest/resources/2021_10/country.rb +133 -0
  164. data/lib/shopify_api/rest/resources/2021_10/currency.rb +53 -0
  165. data/lib/shopify_api/rest/resources/2021_10/custom_collection.rb +183 -0
  166. data/lib/shopify_api/rest/resources/2021_10/customer.rb +288 -0
  167. data/lib/shopify_api/rest/resources/2021_10/customer_address.rb +197 -0
  168. data/lib/shopify_api/rest/resources/2021_10/customer_saved_search.rb +165 -0
  169. data/lib/shopify_api/rest/resources/2021_10/deprecated_api_call.rb +53 -0
  170. data/lib/shopify_api/rest/resources/2021_10/discount_code.rb +215 -0
  171. data/lib/shopify_api/rest/resources/2021_10/dispute.rb +107 -0
  172. data/lib/shopify_api/rest/resources/2021_10/draft_order.rb +269 -0
  173. data/lib/shopify_api/rest/resources/2021_10/event.rb +144 -0
  174. data/lib/shopify_api/rest/resources/2021_10/fulfillment.rb +194 -0
  175. data/lib/shopify_api/rest/resources/2021_10/fulfillment_event.rb +162 -0
  176. data/lib/shopify_api/rest/resources/2021_10/fulfillment_order.rb +277 -0
  177. data/lib/shopify_api/rest/resources/2021_10/fulfillment_request.rb +79 -0
  178. data/lib/shopify_api/rest/resources/2021_10/fulfillment_service.rb +126 -0
  179. data/lib/shopify_api/rest/resources/2021_10/gift_card.rb +203 -0
  180. data/lib/shopify_api/rest/resources/2021_10/gift_card_adjustment.rb +114 -0
  181. data/lib/shopify_api/rest/resources/2021_10/image.rb +153 -0
  182. data/lib/shopify_api/rest/resources/2021_10/inventory_item.rb +104 -0
  183. data/lib/shopify_api/rest/resources/2021_10/inventory_level.rb +175 -0
  184. data/lib/shopify_api/rest/resources/2021_10/location.rb +163 -0
  185. data/lib/shopify_api/rest/resources/2021_10/locations_for_move.rb +52 -0
  186. data/lib/shopify_api/rest/resources/2021_10/marketing_event.rb +205 -0
  187. data/lib/shopify_api/rest/resources/2021_10/metafield.rb +338 -0
  188. data/lib/shopify_api/rest/resources/2021_10/mobile_platform_application.rb +106 -0
  189. data/lib/shopify_api/rest/resources/2021_10/order.rb +469 -0
  190. data/lib/shopify_api/rest/resources/2021_10/order_risk.rb +131 -0
  191. data/lib/shopify_api/rest/resources/2021_10/page.rb +190 -0
  192. data/lib/shopify_api/rest/resources/2021_10/payment.rb +136 -0
  193. data/lib/shopify_api/rest/resources/2021_10/payment_gateway.rb +139 -0
  194. data/lib/shopify_api/rest/resources/2021_10/payment_transaction.rb +103 -0
  195. data/lib/shopify_api/rest/resources/2021_10/payout.rb +93 -0
  196. data/lib/shopify_api/rest/resources/2021_10/policy.rb +65 -0
  197. data/lib/shopify_api/rest/resources/2021_10/price_rule.rb +219 -0
  198. data/lib/shopify_api/rest/resources/2021_10/product.rb +219 -0
  199. data/lib/shopify_api/rest/resources/2021_10/product_listing.rb +192 -0
  200. data/lib/shopify_api/rest/resources/2021_10/product_resource_feedback.rb +84 -0
  201. data/lib/shopify_api/rest/resources/2021_10/province.rb +128 -0
  202. data/lib/shopify_api/rest/resources/2021_10/recurring_application_charge.rb +163 -0
  203. data/lib/shopify_api/rest/resources/2021_10/redirect.rb +135 -0
  204. data/lib/shopify_api/rest/resources/2021_10/refund.rb +147 -0
  205. data/lib/shopify_api/rest/resources/2021_10/report.rb +117 -0
  206. data/lib/shopify_api/rest/resources/2021_10/resource_feedback.rb +69 -0
  207. data/lib/shopify_api/rest/resources/2021_10/script_tag.rb +151 -0
  208. data/lib/shopify_api/rest/resources/2021_10/shipping_zone.rb +79 -0
  209. data/lib/shopify_api/rest/resources/2021_10/shop.rb +214 -0
  210. data/lib/shopify_api/rest/resources/2021_10/smart_collection.rb +212 -0
  211. data/lib/shopify_api/rest/resources/2021_10/storefront_access_token.rb +83 -0
  212. data/lib/shopify_api/rest/resources/2021_10/tender_transaction.rb +89 -0
  213. data/lib/shopify_api/rest/resources/2021_10/theme.rb +116 -0
  214. data/lib/shopify_api/rest/resources/2021_10/transaction.rb +177 -0
  215. data/lib/shopify_api/rest/resources/2021_10/usage_charge.rb +93 -0
  216. data/lib/shopify_api/rest/resources/2021_10/user.rb +134 -0
  217. data/lib/shopify_api/rest/resources/2021_10/variant.rb +208 -0
  218. data/lib/shopify_api/rest/resources/2021_10/webhook.rb +164 -0
  219. data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +185 -0
  220. data/lib/shopify_api/rest/resources/2022_01/access_scope.rb +54 -0
  221. data/lib/shopify_api/rest/resources/2022_01/android_pay_key.rb +73 -0
  222. data/lib/shopify_api/rest/resources/2022_01/apple_pay_certificate.rb +101 -0
  223. data/lib/shopify_api/rest/resources/2022_01/application_charge.rb +100 -0
  224. data/lib/shopify_api/rest/resources/2022_01/application_credit.rb +83 -0
  225. data/lib/shopify_api/rest/resources/2022_01/article.rb +261 -0
  226. data/lib/shopify_api/rest/resources/2022_01/asset.rb +114 -0
  227. data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +75 -0
  228. data/lib/shopify_api/rest/resources/2022_01/balance.rb +46 -0
  229. data/lib/shopify_api/rest/resources/2022_01/blog.rb +158 -0
  230. data/lib/shopify_api/rest/resources/2022_01/cancellation_request.rb +79 -0
  231. data/lib/shopify_api/rest/resources/2022_01/carrier_service.rb +112 -0
  232. data/lib/shopify_api/rest/resources/2022_01/checkout.rb +205 -0
  233. data/lib/shopify_api/rest/resources/2022_01/collect.rb +138 -0
  234. data/lib/shopify_api/rest/resources/2022_01/collection.rb +106 -0
  235. data/lib/shopify_api/rest/resources/2022_01/collection_listing.rb +151 -0
  236. data/lib/shopify_api/rest/resources/2022_01/comment.rb +279 -0
  237. data/lib/shopify_api/rest/resources/2022_01/country.rb +133 -0
  238. data/lib/shopify_api/rest/resources/2022_01/currency.rb +53 -0
  239. data/lib/shopify_api/rest/resources/2022_01/custom_collection.rb +183 -0
  240. data/lib/shopify_api/rest/resources/2022_01/customer.rb +288 -0
  241. data/lib/shopify_api/rest/resources/2022_01/customer_address.rb +197 -0
  242. data/lib/shopify_api/rest/resources/2022_01/customer_saved_search.rb +165 -0
  243. data/lib/shopify_api/rest/resources/2022_01/deprecated_api_call.rb +53 -0
  244. data/lib/shopify_api/rest/resources/2022_01/discount_code.rb +215 -0
  245. data/lib/shopify_api/rest/resources/2022_01/dispute.rb +107 -0
  246. data/lib/shopify_api/rest/resources/2022_01/draft_order.rb +269 -0
  247. data/lib/shopify_api/rest/resources/2022_01/event.rb +144 -0
  248. data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +194 -0
  249. data/lib/shopify_api/rest/resources/2022_01/fulfillment_event.rb +162 -0
  250. data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +277 -0
  251. data/lib/shopify_api/rest/resources/2022_01/fulfillment_request.rb +79 -0
  252. data/lib/shopify_api/rest/resources/2022_01/fulfillment_service.rb +126 -0
  253. data/lib/shopify_api/rest/resources/2022_01/gift_card.rb +203 -0
  254. data/lib/shopify_api/rest/resources/2022_01/gift_card_adjustment.rb +114 -0
  255. data/lib/shopify_api/rest/resources/2022_01/image.rb +153 -0
  256. data/lib/shopify_api/rest/resources/2022_01/inventory_item.rb +104 -0
  257. data/lib/shopify_api/rest/resources/2022_01/inventory_level.rb +175 -0
  258. data/lib/shopify_api/rest/resources/2022_01/location.rb +163 -0
  259. data/lib/shopify_api/rest/resources/2022_01/locations_for_move.rb +52 -0
  260. data/lib/shopify_api/rest/resources/2022_01/marketing_event.rb +205 -0
  261. data/lib/shopify_api/rest/resources/2022_01/metafield.rb +338 -0
  262. data/lib/shopify_api/rest/resources/2022_01/mobile_platform_application.rb +106 -0
  263. data/lib/shopify_api/rest/resources/2022_01/order.rb +469 -0
  264. data/lib/shopify_api/rest/resources/2022_01/order_risk.rb +131 -0
  265. data/lib/shopify_api/rest/resources/2022_01/page.rb +190 -0
  266. data/lib/shopify_api/rest/resources/2022_01/payment.rb +136 -0
  267. data/lib/shopify_api/rest/resources/2022_01/payment_gateway.rb +139 -0
  268. data/lib/shopify_api/rest/resources/2022_01/payment_transaction.rb +103 -0
  269. data/lib/shopify_api/rest/resources/2022_01/payout.rb +93 -0
  270. data/lib/shopify_api/rest/resources/2022_01/policy.rb +65 -0
  271. data/lib/shopify_api/rest/resources/2022_01/price_rule.rb +219 -0
  272. data/lib/shopify_api/rest/resources/2022_01/product.rb +219 -0
  273. data/lib/shopify_api/rest/resources/2022_01/product_listing.rb +192 -0
  274. data/lib/shopify_api/rest/resources/2022_01/product_resource_feedback.rb +84 -0
  275. data/lib/shopify_api/rest/resources/2022_01/province.rb +128 -0
  276. data/lib/shopify_api/rest/resources/2022_01/recurring_application_charge.rb +163 -0
  277. data/lib/shopify_api/rest/resources/2022_01/redirect.rb +135 -0
  278. data/lib/shopify_api/rest/resources/2022_01/refund.rb +147 -0
  279. data/lib/shopify_api/rest/resources/2022_01/report.rb +117 -0
  280. data/lib/shopify_api/rest/resources/2022_01/resource_feedback.rb +69 -0
  281. data/lib/shopify_api/rest/resources/2022_01/script_tag.rb +151 -0
  282. data/lib/shopify_api/rest/resources/2022_01/shipping_zone.rb +79 -0
  283. data/lib/shopify_api/rest/resources/2022_01/shop.rb +214 -0
  284. data/lib/shopify_api/rest/resources/2022_01/smart_collection.rb +212 -0
  285. data/lib/shopify_api/rest/resources/2022_01/storefront_access_token.rb +83 -0
  286. data/lib/shopify_api/rest/resources/2022_01/tender_transaction.rb +89 -0
  287. data/lib/shopify_api/rest/resources/2022_01/theme.rb +116 -0
  288. data/lib/shopify_api/rest/resources/2022_01/transaction.rb +177 -0
  289. data/lib/shopify_api/rest/resources/2022_01/usage_charge.rb +93 -0
  290. data/lib/shopify_api/rest/resources/2022_01/user.rb +134 -0
  291. data/lib/shopify_api/rest/resources/2022_01/variant.rb +208 -0
  292. data/lib/shopify_api/rest/resources/2022_01/webhook.rb +164 -0
  293. data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +185 -0
  294. data/lib/shopify_api/rest/resources/2022_04/access_scope.rb +54 -0
  295. data/lib/shopify_api/rest/resources/2022_04/android_pay_key.rb +73 -0
  296. data/lib/shopify_api/rest/resources/2022_04/apple_pay_certificate.rb +101 -0
  297. data/lib/shopify_api/rest/resources/2022_04/application_charge.rb +100 -0
  298. data/lib/shopify_api/rest/resources/2022_04/application_credit.rb +83 -0
  299. data/lib/shopify_api/rest/resources/2022_04/article.rb +261 -0
  300. data/lib/shopify_api/rest/resources/2022_04/asset.rb +114 -0
  301. data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +75 -0
  302. data/lib/shopify_api/rest/resources/2022_04/balance.rb +46 -0
  303. data/lib/shopify_api/rest/resources/2022_04/blog.rb +158 -0
  304. data/lib/shopify_api/rest/resources/2022_04/cancellation_request.rb +79 -0
  305. data/lib/shopify_api/rest/resources/2022_04/carrier_service.rb +112 -0
  306. data/lib/shopify_api/rest/resources/2022_04/checkout.rb +205 -0
  307. data/lib/shopify_api/rest/resources/2022_04/collect.rb +138 -0
  308. data/lib/shopify_api/rest/resources/2022_04/collection.rb +106 -0
  309. data/lib/shopify_api/rest/resources/2022_04/collection_listing.rb +151 -0
  310. data/lib/shopify_api/rest/resources/2022_04/comment.rb +279 -0
  311. data/lib/shopify_api/rest/resources/2022_04/country.rb +133 -0
  312. data/lib/shopify_api/rest/resources/2022_04/currency.rb +53 -0
  313. data/lib/shopify_api/rest/resources/2022_04/custom_collection.rb +183 -0
  314. data/lib/shopify_api/rest/resources/2022_04/customer.rb +291 -0
  315. data/lib/shopify_api/rest/resources/2022_04/customer_address.rb +197 -0
  316. data/lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb +165 -0
  317. data/lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb +53 -0
  318. data/lib/shopify_api/rest/resources/2022_04/discount_code.rb +215 -0
  319. data/lib/shopify_api/rest/resources/2022_04/dispute.rb +107 -0
  320. data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +269 -0
  321. data/lib/shopify_api/rest/resources/2022_04/event.rb +144 -0
  322. data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +194 -0
  323. data/lib/shopify_api/rest/resources/2022_04/fulfillment_event.rb +162 -0
  324. data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +277 -0
  325. data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +79 -0
  326. data/lib/shopify_api/rest/resources/2022_04/fulfillment_service.rb +126 -0
  327. data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +203 -0
  328. data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +114 -0
  329. data/lib/shopify_api/rest/resources/2022_04/image.rb +153 -0
  330. data/lib/shopify_api/rest/resources/2022_04/inventory_item.rb +104 -0
  331. data/lib/shopify_api/rest/resources/2022_04/inventory_level.rb +175 -0
  332. data/lib/shopify_api/rest/resources/2022_04/location.rb +163 -0
  333. data/lib/shopify_api/rest/resources/2022_04/locations_for_move.rb +52 -0
  334. data/lib/shopify_api/rest/resources/2022_04/marketing_event.rb +205 -0
  335. data/lib/shopify_api/rest/resources/2022_04/metafield.rb +338 -0
  336. data/lib/shopify_api/rest/resources/2022_04/mobile_platform_application.rb +106 -0
  337. data/lib/shopify_api/rest/resources/2022_04/order.rb +469 -0
  338. data/lib/shopify_api/rest/resources/2022_04/order_risk.rb +131 -0
  339. data/lib/shopify_api/rest/resources/2022_04/page.rb +190 -0
  340. data/lib/shopify_api/rest/resources/2022_04/payment.rb +136 -0
  341. data/lib/shopify_api/rest/resources/2022_04/payment_gateway.rb +139 -0
  342. data/lib/shopify_api/rest/resources/2022_04/payment_transaction.rb +103 -0
  343. data/lib/shopify_api/rest/resources/2022_04/payout.rb +93 -0
  344. data/lib/shopify_api/rest/resources/2022_04/policy.rb +65 -0
  345. data/lib/shopify_api/rest/resources/2022_04/price_rule.rb +219 -0
  346. data/lib/shopify_api/rest/resources/2022_04/product.rb +219 -0
  347. data/lib/shopify_api/rest/resources/2022_04/product_listing.rb +192 -0
  348. data/lib/shopify_api/rest/resources/2022_04/product_resource_feedback.rb +84 -0
  349. data/lib/shopify_api/rest/resources/2022_04/province.rb +128 -0
  350. data/lib/shopify_api/rest/resources/2022_04/recurring_application_charge.rb +163 -0
  351. data/lib/shopify_api/rest/resources/2022_04/redirect.rb +135 -0
  352. data/lib/shopify_api/rest/resources/2022_04/refund.rb +147 -0
  353. data/lib/shopify_api/rest/resources/2022_04/report.rb +117 -0
  354. data/lib/shopify_api/rest/resources/2022_04/resource_feedback.rb +69 -0
  355. data/lib/shopify_api/rest/resources/2022_04/script_tag.rb +151 -0
  356. data/lib/shopify_api/rest/resources/2022_04/shipping_zone.rb +79 -0
  357. data/lib/shopify_api/rest/resources/2022_04/shop.rb +214 -0
  358. data/lib/shopify_api/rest/resources/2022_04/smart_collection.rb +212 -0
  359. data/lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb +83 -0
  360. data/lib/shopify_api/rest/resources/2022_04/tender_transaction.rb +89 -0
  361. data/lib/shopify_api/rest/resources/2022_04/theme.rb +116 -0
  362. data/lib/shopify_api/rest/resources/2022_04/transaction.rb +177 -0
  363. data/lib/shopify_api/rest/resources/2022_04/usage_charge.rb +93 -0
  364. data/lib/shopify_api/rest/resources/2022_04/user.rb +134 -0
  365. data/lib/shopify_api/rest/resources/2022_04/variant.rb +208 -0
  366. data/lib/shopify_api/rest/resources/2022_04/webhook.rb +164 -0
  367. data/lib/shopify_api/utils/graphql_proxy.rb +52 -0
  368. data/lib/shopify_api/utils/hmac_validator.rb +34 -0
  369. data/lib/shopify_api/utils/http_utils.rb +17 -0
  370. data/lib/shopify_api/utils/session_utils.rb +135 -0
  371. data/lib/shopify_api/utils/verifiable_query.rb +18 -0
  372. data/lib/shopify_api/version.rb +3 -1
  373. data/lib/shopify_api/webhooks/handler.rb +15 -0
  374. data/lib/shopify_api/webhooks/register_result.rb +14 -0
  375. data/lib/shopify_api/webhooks/registration.rb +73 -0
  376. data/lib/shopify_api/webhooks/registrations/event_bridge.rb +61 -0
  377. data/lib/shopify_api/webhooks/registrations/http.rb +66 -0
  378. data/lib/shopify_api/webhooks/registrations/pub_sub.rb +65 -0
  379. data/lib/shopify_api/webhooks/registry.rb +216 -0
  380. data/lib/shopify_api/webhooks/request.rb +56 -0
  381. data/lib/shopify_api.rb +18 -36
  382. data/service.yml +0 -3
  383. data/shipit.rubygems.yml +1 -1
  384. data/shopify_api.gemspec +28 -24
  385. data/sorbet/config +3 -0
  386. data/sorbet/rbi/gems/activesupport@7.0.1.rbi +654 -0
  387. data/sorbet/rbi/gems/addressable@2.8.0.rbi +290 -0
  388. data/sorbet/rbi/gems/ast@2.4.2.rbi +54 -0
  389. data/sorbet/rbi/gems/coderay@1.1.3.rbi +8 -0
  390. data/sorbet/rbi/gems/concurrent-ruby@1.1.9.rbi +2401 -0
  391. data/sorbet/rbi/gems/crack@0.4.5.rbi +57 -0
  392. data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +185 -0
  393. data/sorbet/rbi/gems/fakefs@1.4.1.rbi +571 -0
  394. data/sorbet/rbi/gems/hash_diff@1.0.0.rbi +47 -0
  395. data/sorbet/rbi/gems/hashdiff@1.0.1.rbi +82 -0
  396. data/sorbet/rbi/gems/httparty@0.20.0.rbi +573 -0
  397. data/sorbet/rbi/gems/i18n@1.8.11.rbi +25 -0
  398. data/sorbet/rbi/gems/jwt@2.3.0.rbi +437 -0
  399. data/sorbet/rbi/gems/method_source@1.0.0.rbi +8 -0
  400. data/sorbet/rbi/gems/mime-types-data@3.2022.0105.rbi +73 -0
  401. data/sorbet/rbi/gems/mime-types@3.4.1.rbi +295 -0
  402. data/sorbet/rbi/gems/minitest@5.15.0.rbi +541 -0
  403. data/sorbet/rbi/gems/mocha@1.13.0.rbi +986 -0
  404. data/sorbet/rbi/gems/multi_xml@0.6.0.rbi +36 -0
  405. data/sorbet/rbi/gems/oj@3.13.11.rbi +274 -0
  406. data/sorbet/rbi/gems/openssl@3.0.0.rbi +581 -0
  407. data/sorbet/rbi/gems/parallel@1.21.0.rbi +113 -0
  408. data/sorbet/rbi/gems/parser@3.1.0.0.rbi +1741 -0
  409. data/sorbet/rbi/gems/pry@0.14.1.rbi +8 -0
  410. data/sorbet/rbi/gems/public_suffix@4.0.6.rbi +145 -0
  411. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +157 -0
  412. data/sorbet/rbi/gems/rake@13.0.6.rbi +814 -0
  413. data/sorbet/rbi/gems/rbi@0.0.11.rbi +1646 -0
  414. data/sorbet/rbi/gems/regexp_parser@2.2.0.rbi +1130 -0
  415. data/sorbet/rbi/gems/rexml@3.2.5.rbi +709 -0
  416. data/sorbet/rbi/gems/rubocop-ast@1.15.1.rbi +1921 -0
  417. data/sorbet/rbi/gems/rubocop-shopify@2.4.0.rbi +8 -0
  418. data/sorbet/rbi/gems/rubocop-sorbet@0.6.5.rbi +295 -0
  419. data/sorbet/rbi/gems/rubocop@1.25.1.rbi +13507 -0
  420. data/sorbet/rbi/gems/ruby-progressbar@1.11.0.rbi +405 -0
  421. data/sorbet/rbi/gems/securerandom@0.1.1.rbi +10 -0
  422. data/sorbet/rbi/gems/spoom@1.1.8.rbi +1252 -0
  423. data/sorbet/rbi/gems/tapioca@0.6.3.rbi +1238 -0
  424. data/sorbet/rbi/gems/thor@1.2.1.rbi +844 -0
  425. data/sorbet/rbi/gems/tzinfo@2.0.4.rbi +858 -0
  426. data/sorbet/rbi/gems/unicode-display_width@2.1.0.rbi +26 -0
  427. data/sorbet/rbi/gems/unparser@0.6.3.rbi +1816 -0
  428. data/sorbet/rbi/gems/webmock@3.14.0.rbi +683 -0
  429. data/sorbet/rbi/gems/webrick@1.7.0.rbi +601 -0
  430. data/sorbet/rbi/gems/yard-sorbet@0.6.1.rbi +199 -0
  431. data/sorbet/rbi/gems/yard@0.9.27.rbi +4145 -0
  432. data/sorbet/rbi/gems/zeitwerk@2.5.4.rbi +200 -0
  433. data/sorbet/rbi/shims/fakefs.rbi +1 -0
  434. data/sorbet/rbi/shims/openssl.rb +3 -0
  435. data/sorbet/rbi/todo.rbi +9 -0
  436. data/sorbet/tapioca/config.yml +4 -0
  437. data/sorbet/tapioca/require.rb +20 -0
  438. metadata +496 -360
  439. data/.document +0 -5
  440. data/.gitignore +0 -14
  441. data/.rubocop_todo.yml +0 -75
  442. data/CONTRIBUTORS +0 -3
  443. data/Gemfile_ar41 +0 -5
  444. data/Gemfile_ar50 +0 -5
  445. data/Gemfile_ar51 +0 -5
  446. data/Gemfile_ar_master +0 -5
  447. data/docker-compose.yml +0 -13
  448. data/docs/_config.yml +0 -1
  449. data/docs/_includes/footer.html +0 -28
  450. data/docs/_includes/head.html +0 -28
  451. data/docs/_layouts/index.html +0 -57
  452. data/docs/graphql.md +0 -241
  453. data/docs/index.md +0 -639
  454. data/lib/active_resource/connection_ext.rb +0 -11
  455. data/lib/active_resource/detailed_log_subscriber.rb +0 -55
  456. data/lib/active_resource/json_errors.rb +0 -37
  457. data/lib/shopify_api/api_access.rb +0 -57
  458. data/lib/shopify_api/api_version.rb +0 -206
  459. data/lib/shopify_api/connection.rb +0 -36
  460. data/lib/shopify_api/countable.rb +0 -15
  461. data/lib/shopify_api/disable_prefix_check.rb +0 -31
  462. data/lib/shopify_api/events.rb +0 -8
  463. data/lib/shopify_api/graphql/http_client.rb +0 -22
  464. data/lib/shopify_api/graphql/railtie.rb +0 -17
  465. data/lib/shopify_api/graphql/task.rake +0 -100
  466. data/lib/shopify_api/graphql.rb +0 -103
  467. data/lib/shopify_api/hmac_params.rb +0 -23
  468. data/lib/shopify_api/limits.rb +0 -77
  469. data/lib/shopify_api/message_enricher.rb +0 -25
  470. data/lib/shopify_api/meta.rb +0 -14
  471. data/lib/shopify_api/metafields.rb +0 -21
  472. data/lib/shopify_api/paginated_collection.rb +0 -69
  473. data/lib/shopify_api/pagination_link_headers.rb +0 -34
  474. data/lib/shopify_api/resources/abandoned_checkout.rb +0 -7
  475. data/lib/shopify_api/resources/access_scope.rb +0 -10
  476. data/lib/shopify_api/resources/access_token.rb +0 -9
  477. data/lib/shopify_api/resources/address.rb +0 -5
  478. data/lib/shopify_api/resources/announcement.rb +0 -5
  479. data/lib/shopify_api/resources/api_permission.rb +0 -9
  480. data/lib/shopify_api/resources/application_charge.rb +0 -16
  481. data/lib/shopify_api/resources/application_credit.rb +0 -5
  482. data/lib/shopify_api/resources/array_base.rb +0 -13
  483. data/lib/shopify_api/resources/article.rb +0 -22
  484. data/lib/shopify_api/resources/asset.rb +0 -101
  485. data/lib/shopify_api/resources/assigned_fulfillment_order.rb +0 -16
  486. data/lib/shopify_api/resources/base.rb +0 -166
  487. data/lib/shopify_api/resources/billing_address.rb +0 -5
  488. data/lib/shopify_api/resources/blog.rb +0 -11
  489. data/lib/shopify_api/resources/carrier_service.rb +0 -5
  490. data/lib/shopify_api/resources/cart.rb +0 -5
  491. data/lib/shopify_api/resources/checkout.rb +0 -30
  492. data/lib/shopify_api/resources/collect.rb +0 -7
  493. data/lib/shopify_api/resources/collection.rb +0 -14
  494. data/lib/shopify_api/resources/collection_listing.rb +0 -19
  495. data/lib/shopify_api/resources/collection_publication.rb +0 -10
  496. data/lib/shopify_api/resources/comment.rb +0 -24
  497. data/lib/shopify_api/resources/country.rb +0 -5
  498. data/lib/shopify_api/resources/currency.rb +0 -6
  499. data/lib/shopify_api/resources/custom_collection.rb +0 -20
  500. data/lib/shopify_api/resources/customer.rb +0 -30
  501. data/lib/shopify_api/resources/customer_group.rb +0 -6
  502. data/lib/shopify_api/resources/customer_invite.rb +0 -5
  503. data/lib/shopify_api/resources/customer_saved_search.rb +0 -12
  504. data/lib/shopify_api/resources/discount_code.rb +0 -10
  505. data/lib/shopify_api/resources/discount_code_batch.rb +0 -34
  506. data/lib/shopify_api/resources/draft_order.rb +0 -15
  507. data/lib/shopify_api/resources/draft_order_invoice.rb +0 -5
  508. data/lib/shopify_api/resources/event.rb +0 -9
  509. data/lib/shopify_api/resources/fulfillment.rb +0 -56
  510. data/lib/shopify_api/resources/fulfillment_event.rb +0 -16
  511. data/lib/shopify_api/resources/fulfillment_order.rb +0 -151
  512. data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +0 -5
  513. data/lib/shopify_api/resources/fulfillment_request.rb +0 -16
  514. data/lib/shopify_api/resources/fulfillment_service.rb +0 -5
  515. data/lib/shopify_api/resources/fulfillment_v2.rb +0 -21
  516. data/lib/shopify_api/resources/gift_card.rb +0 -8
  517. data/lib/shopify_api/resources/image.rb +0 -17
  518. data/lib/shopify_api/resources/inventory_item.rb +0 -6
  519. data/lib/shopify_api/resources/inventory_level.rb +0 -54
  520. data/lib/shopify_api/resources/line_item.rb +0 -15
  521. data/lib/shopify_api/resources/location.rb +0 -8
  522. data/lib/shopify_api/resources/marketing_event.rb +0 -11
  523. data/lib/shopify_api/resources/metafield.rb +0 -14
  524. data/lib/shopify_api/resources/note_attribute.rb +0 -5
  525. data/lib/shopify_api/resources/option.rb +0 -5
  526. data/lib/shopify_api/resources/order.rb +0 -44
  527. data/lib/shopify_api/resources/order_risk.rb +0 -9
  528. data/lib/shopify_api/resources/page.rb +0 -7
  529. data/lib/shopify_api/resources/payment.rb +0 -7
  530. data/lib/shopify_api/resources/payment_details.rb +0 -5
  531. data/lib/shopify_api/resources/ping.rb +0 -3
  532. data/lib/shopify_api/resources/policy.rb +0 -8
  533. data/lib/shopify_api/resources/price_rule.rb +0 -8
  534. data/lib/shopify_api/resources/product.rb +0 -59
  535. data/lib/shopify_api/resources/product_listing.rb +0 -17
  536. data/lib/shopify_api/resources/product_publication.rb +0 -10
  537. data/lib/shopify_api/resources/province.rb +0 -6
  538. data/lib/shopify_api/resources/publication.rb +0 -5
  539. data/lib/shopify_api/resources/receipt.rb +0 -5
  540. data/lib/shopify_api/resources/recurring_application_charge.rb +0 -34
  541. data/lib/shopify_api/resources/redirect.rb +0 -5
  542. data/lib/shopify_api/resources/refund.rb +0 -15
  543. data/lib/shopify_api/resources/report.rb +0 -5
  544. data/lib/shopify_api/resources/resource_feedback.rb +0 -19
  545. data/lib/shopify_api/resources/rule.rb +0 -5
  546. data/lib/shopify_api/resources/script_tag.rb +0 -5
  547. data/lib/shopify_api/resources/shipping_address.rb +0 -5
  548. data/lib/shopify_api/resources/shipping_line.rb +0 -5
  549. data/lib/shopify_api/resources/shipping_rate.rb +0 -7
  550. data/lib/shopify_api/resources/shipping_zone.rb +0 -5
  551. data/lib/shopify_api/resources/shop.rb +0 -26
  552. data/lib/shopify_api/resources/smart_collection.rb +0 -15
  553. data/lib/shopify_api/resources/storefront_access_token.rb +0 -5
  554. data/lib/shopify_api/resources/tax_line.rb +0 -5
  555. data/lib/shopify_api/resources/tax_service.rb +0 -5
  556. data/lib/shopify_api/resources/tender_transaction.rb +0 -6
  557. data/lib/shopify_api/resources/theme.rb +0 -5
  558. data/lib/shopify_api/resources/transaction.rb +0 -6
  559. data/lib/shopify_api/resources/usage_charge.rb +0 -6
  560. data/lib/shopify_api/resources/user.rb +0 -5
  561. data/lib/shopify_api/resources/variant.rb +0 -43
  562. data/lib/shopify_api/resources/webhook.rb +0 -5
  563. data/lib/shopify_api/resources.rb +0 -4
  564. data/lib/shopify_api/session.rb +0 -203
  565. data/lib/verify_docs.rb +0 -8
  566. data/test/abandoned_checkouts_test.rb +0 -29
  567. data/test/access_scope_test.rb +0 -23
  568. data/test/access_token_test.rb +0 -20
  569. data/test/active_resource/json_errors_test.rb +0 -19
  570. data/test/api_access_test.rb +0 -153
  571. data/test/api_permission_test.rb +0 -9
  572. data/test/api_version_test.rb +0 -157
  573. data/test/application_charge_test.rb +0 -82
  574. data/test/application_credit_test.rb +0 -36
  575. data/test/article_test.rb +0 -72
  576. data/test/asset_test.rb +0 -26
  577. data/test/assigned_fulfillment_order_test.rb +0 -78
  578. data/test/base_test.rb +0 -213
  579. data/test/blog_test.rb +0 -9
  580. data/test/carrier_service_test.rb +0 -18
  581. data/test/cart_test.rb +0 -14
  582. data/test/checkouts_test.rb +0 -77
  583. data/test/collect_test.rb +0 -10
  584. data/test/collection_listing_test.rb +0 -84
  585. data/test/collection_publication_test.rb +0 -40
  586. data/test/collection_test.rb +0 -50
  587. data/test/countable_test.rb +0 -14
  588. data/test/currency_test.rb +0 -21
  589. data/test/custom_collection_test.rb +0 -10
  590. data/test/customer_saved_search_test.rb +0 -37
  591. data/test/customer_test.rb +0 -58
  592. data/test/detailed_log_subscriber_test.rb +0 -143
  593. data/test/discount_code_batch_test.rb +0 -41
  594. data/test/discount_code_test.rb +0 -59
  595. data/test/draft_order_test.rb +0 -167
  596. data/test/fixtures/abandoned_checkout.json +0 -184
  597. data/test/fixtures/abandoned_checkouts.json +0 -186
  598. data/test/fixtures/access_scopes.json +0 -10
  599. data/test/fixtures/access_token_delegate.json +0 -4
  600. data/test/fixtures/api_versions.json +0 -38
  601. data/test/fixtures/apis.json +0 -42
  602. data/test/fixtures/application_charge.json +0 -16
  603. data/test/fixtures/application_charges.json +0 -57
  604. data/test/fixtures/application_credit.json +0 -12
  605. data/test/fixtures/application_credits.json +0 -24
  606. data/test/fixtures/article.json +0 -15
  607. data/test/fixtures/articles.json +0 -39
  608. data/test/fixtures/asset.json +0 -9
  609. data/test/fixtures/assets.json +0 -136
  610. data/test/fixtures/assigned_fulfillment_orders.json +0 -80
  611. data/test/fixtures/authors.json +0 -1
  612. data/test/fixtures/blog.json +0 -13
  613. data/test/fixtures/blogs.json +0 -13
  614. data/test/fixtures/carrier_service.json +0 -9
  615. data/test/fixtures/carts.json +0 -43
  616. data/test/fixtures/checkout.json +0 -160
  617. data/test/fixtures/checkouts.json +0 -162
  618. data/test/fixtures/collect.json +0 -12
  619. data/test/fixtures/collection.json +0 -17
  620. data/test/fixtures/collection_listing.json +0 -11
  621. data/test/fixtures/collection_listing_product_ids.json +0 -1
  622. data/test/fixtures/collection_listing_product_ids2.json +0 -1
  623. data/test/fixtures/collection_listings.json +0 -13
  624. data/test/fixtures/collection_products.json +0 -47
  625. data/test/fixtures/collection_publication.json +0 -11
  626. data/test/fixtures/collection_publications.json +0 -13
  627. data/test/fixtures/currencies.json +0 -25
  628. data/test/fixtures/custom_collection.json +0 -17
  629. data/test/fixtures/customer_invite.json +0 -9
  630. data/test/fixtures/customer_saved_search.json +0 -9
  631. data/test/fixtures/customer_saved_search_customers.json +0 -60
  632. data/test/fixtures/customers.json +0 -59
  633. data/test/fixtures/customers_account_activation_url.json +0 -3
  634. data/test/fixtures/customers_search.json +0 -60
  635. data/test/fixtures/discount_code.json +0 -10
  636. data/test/fixtures/discount_code_batch.json +0 -14
  637. data/test/fixtures/discount_code_batch_discount_codes.json +0 -21
  638. data/test/fixtures/discount_codes.json +0 -12
  639. data/test/fixtures/draft_order.json +0 -159
  640. data/test/fixtures/draft_order_completed.json +0 -159
  641. data/test/fixtures/draft_order_invoice.json +0 -9
  642. data/test/fixtures/draft_orders.json +0 -161
  643. data/test/fixtures/engagement.json +0 -15
  644. data/test/fixtures/events.json +0 -31
  645. data/test/fixtures/fulfillment.json +0 -49
  646. data/test/fixtures/fulfillment_event.json +0 -12
  647. data/test/fixtures/fulfillment_order.json +0 -39
  648. data/test/fixtures/fulfillment_order_locations_for_move.json +0 -18
  649. data/test/fixtures/fulfillment_orders.json +0 -80
  650. data/test/fixtures/fulfillment_request.json +0 -28
  651. data/test/fixtures/fulfillment_service.json +0 -10
  652. data/test/fixtures/fulfillments.json +0 -53
  653. data/test/fixtures/gift_card.json +0 -20
  654. data/test/fixtures/gift_card_disabled.json +0 -20
  655. data/test/fixtures/graphql/2019-10.json +0 -1083
  656. data/test/fixtures/graphql/dummy_schema.rb +0 -16
  657. data/test/fixtures/graphql/unstable.json +0 -1083
  658. data/test/fixtures/image.json +0 -10
  659. data/test/fixtures/images.json +0 -20
  660. data/test/fixtures/inventory_level.json +0 -7
  661. data/test/fixtures/inventory_levels.json +0 -24
  662. data/test/fixtures/marketing_event.json +0 -28
  663. data/test/fixtures/marketing_events.json +0 -54
  664. data/test/fixtures/metafield.json +0 -12
  665. data/test/fixtures/metafields.json +0 -34
  666. data/test/fixtures/order.json +0 -297
  667. data/test/fixtures/order_risk.json +0 -14
  668. data/test/fixtures/order_risks.json +0 -28
  669. data/test/fixtures/order_with_properties.json +0 -373
  670. data/test/fixtures/orders.json +0 -299
  671. data/test/fixtures/payment.json +0 -7
  672. data/test/fixtures/payments.json +0 -9
  673. data/test/fixtures/ping/conversation.json +0 -1
  674. data/test/fixtures/ping/failed_delivery_confirmation.json +0 -1
  675. data/test/fixtures/ping/message.json +0 -1
  676. data/test/fixtures/ping/successful_delivery_confirmation.json +0 -1
  677. data/test/fixtures/policies.json +0 -8
  678. data/test/fixtures/price_rule.json +0 -27
  679. data/test/fixtures/price_rules.json +0 -28
  680. data/test/fixtures/product.json +0 -116
  681. data/test/fixtures/product_listing.json +0 -86
  682. data/test/fixtures/product_listing_product_ids.json +0 -1
  683. data/test/fixtures/product_listing_product_ids2.json +0 -1
  684. data/test/fixtures/product_listings.json +0 -174
  685. data/test/fixtures/product_publication.json +0 -11
  686. data/test/fixtures/product_publications.json +0 -13
  687. data/test/fixtures/publications.json +0 -9
  688. data/test/fixtures/recurring_application_charge.json +0 -22
  689. data/test/fixtures/recurring_application_charge_adjustment.json +0 -5
  690. data/test/fixtures/recurring_application_charges.json +0 -106
  691. data/test/fixtures/redirect.json +0 -7
  692. data/test/fixtures/refund.json +0 -112
  693. data/test/fixtures/report.json +0 -9
  694. data/test/fixtures/reports.json +0 -11
  695. data/test/fixtures/script_tag.json +0 -10
  696. data/test/fixtures/script_tags.json +0 -18
  697. data/test/fixtures/shipping_rates.json +0 -12
  698. data/test/fixtures/shipping_zones.json +0 -315
  699. data/test/fixtures/shop.json +0 -26
  700. data/test/fixtures/smart_collection.json +0 -21
  701. data/test/fixtures/smart_collection_products.json +0 -155
  702. data/test/fixtures/storefront_access_token.json +0 -9
  703. data/test/fixtures/storefront_access_tokens.json +0 -18
  704. data/test/fixtures/tags.json +0 -1
  705. data/test/fixtures/tax_service.json +0 -9
  706. data/test/fixtures/tender_transactions.json +0 -52
  707. data/test/fixtures/transaction.json +0 -29
  708. data/test/fixtures/usage_charge.json +0 -11
  709. data/test/fixtures/usage_charges.json +0 -23
  710. data/test/fixtures/user.json +0 -21
  711. data/test/fixtures/users.json +0 -42
  712. data/test/fixtures/variant.json +0 -23
  713. data/test/fixtures/variants.json +0 -88
  714. data/test/fixtures/webhook.json +0 -10
  715. data/test/fixtures/webhooks.json +0 -18
  716. data/test/fulfillment_event_test.rb +0 -74
  717. data/test/fulfillment_order_test.rb +0 -530
  718. data/test/fulfillment_order_test_helper.rb +0 -8
  719. data/test/fulfillment_request_test.rb +0 -35
  720. data/test/fulfillment_service_test.rb +0 -18
  721. data/test/fulfillment_test.rb +0 -239
  722. data/test/fulfillment_v2_test.rb +0 -66
  723. data/test/gift_card_test.rb +0 -24
  724. data/test/graphql/http_client_test.rb +0 -26
  725. data/test/graphql_test.rb +0 -190
  726. data/test/hmac_params_test.rb +0 -25
  727. data/test/image_test.rb +0 -41
  728. data/test/inventory_level_test.rb +0 -68
  729. data/test/lib/webmock_extensions/last_request.rb +0 -16
  730. data/test/limits_test.rb +0 -39
  731. data/test/location_test.rb +0 -15
  732. data/test/marketing_event_test.rb +0 -68
  733. data/test/message_enricher_test.rb +0 -45
  734. data/test/meta_test.rb +0 -47
  735. data/test/metafield_test.rb +0 -56
  736. data/test/order_risk_test.rb +0 -47
  737. data/test/order_test.rb +0 -140
  738. data/test/pagination_test.rb +0 -290
  739. data/test/payment_test.rb +0 -19
  740. data/test/policy_test.rb +0 -20
  741. data/test/price_rule_test.rb +0 -70
  742. data/test/product_listing_test.rb +0 -97
  743. data/test/product_publication_test.rb +0 -40
  744. data/test/product_test.rb +0 -111
  745. data/test/publication_test.rb +0 -12
  746. data/test/recurring_application_charge_test.rb +0 -204
  747. data/test/redirect_test.rb +0 -10
  748. data/test/refund_test.rb +0 -37
  749. data/test/report_test.rb +0 -37
  750. data/test/resource_feedback_test.rb +0 -43
  751. data/test/script_tag_test.rb +0 -31
  752. data/test/session_test.rb +0 -640
  753. data/test/shipping_rate_test.rb +0 -17
  754. data/test/shipping_zone_test.rb +0 -11
  755. data/test/shop_test.rb +0 -82
  756. data/test/smart_collection_test.rb +0 -11
  757. data/test/storefront_access_token_test.rb +0 -30
  758. data/test/tax_service_test.rb +0 -12
  759. data/test/tender_transaction_test.rb +0 -18
  760. data/test/test_helper.rb +0 -126
  761. data/test/transaction_test.rb +0 -18
  762. data/test/usage_charge_test.rb +0 -25
  763. data/test/user_test.rb +0 -18
  764. data/test/variant_test.rb +0 -73
  765. data/test/webhook_test.rb +0 -24
data/CHANGELOG.md CHANGED
@@ -1,495 +1,518 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ## Version 10.0.1
6
+
7
+ ### Fixed
8
+
9
+ - [#919](https://github.com/Shopify/shopify_api/pull/919) Allow REST resources to configure a deny list of attributes to be excluded when saving
10
+ - [#920](https://github.com/Shopify/shopify_api/pull/920) Set all values received from the API response to REST resource objects, and allow setting / getting attributes with special characters (such as `?`)
11
+ - [#927](https://github.com/Shopify/shopify_api/pull/927) Fix the `ShopifyAPI::AdminVersions` module for backward compatibility
12
+
13
+ ## Version 10.0.0
14
+
15
+ - Major update to the library to provide _all_ essential functions needed for a Shopify app, supporting embedded apps with session tokens. See the [full list of changes](https://github.com/Shopify/shopify_api#breaking-change-notice-for-version-1000) here
16
+
17
+ ## Version 9.5.1
18
+
19
+ - [#891](https://github.com/Shopify/shopify_api/pull/891) Removed the upper bound on the `activeresource` dependency to allow apps to use the latest version
20
+
1
21
  ## Version 9.5
2
22
 
3
- * [#883](https://github.com/Shopify/shopify_api/pull/883) Add support for Ruby 3.0
23
+ - [#883](https://github.com/Shopify/shopify_api/pull/883) Add support for Ruby 3.0
4
24
 
5
25
  ## Version 9.4.1
6
26
 
7
- * [#847](https://github.com/Shopify/shopify_api/pull/847) Update `create_permission_url` method to use grant_options
8
- * [#852](https://github.com/Shopify/shopify_api/pull/852) Bumping kramdown to fix a security vulnerability
27
+ - [#847](https://github.com/Shopify/shopify_api/pull/847) Update `create_permission_url` method to use grant_options
28
+ - [#852](https://github.com/Shopify/shopify_api/pull/852) Bumping kramdown to fix a security vulnerability
9
29
 
10
30
  ## Version 9.4.0
11
31
 
12
- * [#843](https://github.com/Shopify/shopify_api/pull/843) Introduce a new `access_scopes` attribute on the Session class.
13
- * Specifying this in the Session constructor is optional. By default, this attribute returns `nil`.
32
+ - [#843](https://github.com/Shopify/shopify_api/pull/843) Introduce a new `access_scopes` attribute on the Session class.
33
+ - Specifying this in the Session constructor is optional. By default, this attribute returns `nil`.
14
34
 
15
35
  ## Version 9.3.0
16
36
 
17
- * [#797](https://github.com/Shopify/shopify_api/pull/797) Release new Endpoint `fulfillment_order.open` and `fulfillment_order.reschedule`.
37
+ - [#797](https://github.com/Shopify/shopify_api/pull/797) Release new Endpoint `fulfillment_order.open` and `fulfillment_order.reschedule`.
18
38
 
19
- * [#818](https://github.com/Shopify/shopify_api/pull/818) Avoid depending on ActiveSupport in Sesssion class.
39
+ - [#818](https://github.com/Shopify/shopify_api/pull/818) Avoid depending on ActiveSupport in Sesssion class.
20
40
 
21
- * Freeze all string literals. This should have no impact unless your application is modifying ('monkeypatching') the internals of the library in an unusual way.
41
+ - Freeze all string literals. This should have no impact unless your application is modifying ('monkeypatching') the internals of the library in an unusual way.
22
42
 
23
- * [#802](https://github.com/Shopify/shopify_api/pull/802) Made `inventory_quantity` a read-only field in Variant
43
+ - [#802](https://github.com/Shopify/shopify_api/pull/802) Made `inventory_quantity` a read-only field in Variant
24
44
 
25
- * [#821](https://github.com/Shopify/shopify_api/pull/821) Add logging based on environment variable, move log subscriber out of `detailed_log_subscriber`.
45
+ - [#821](https://github.com/Shopify/shopify_api/pull/821) Add logging based on environment variable, move log subscriber out of `detailed_log_subscriber`.
26
46
  The `ActiveResource::DetailedLogSubscriber` no longer automatically attaches when the class is loaded. If you were previously relying on that behaviour, you'll now need to call `ActiveResource::DetailedLogSubscriber.attach_to(:active_resource_detailed)`. (If using the new `SHOPIFY_LOG_PATH` environment setting then this is handled for you).
27
47
 
28
- * Provide `ApiAccess` value object to encapsulate scope operations [#829](https://github.com/Shopify/shopify_api/pull/829)
48
+ - Provide `ApiAccess` value object to encapsulate scope operations [#829](https://github.com/Shopify/shopify_api/pull/829)
29
49
 
30
50
  ## Version 9.2.0
31
51
 
32
- * Removes the `shopify` binary which will be used by the Shopify CLI
52
+ - Removes the `shopify` binary which will be used by the Shopify CLI
33
53
 
34
54
  ## Version 9.1.1
35
55
 
36
- * Make cursor based pagination return relative uri's when fetching next and previous pages. [#726](https://github.com/Shopify/shopify_api/pull/726)
56
+ - Make cursor based pagination return relative uri's when fetching next and previous pages. [#726](https://github.com/Shopify/shopify_api/pull/726)
37
57
 
38
58
  ## Version 9.1.0
39
59
 
40
- * Implements equality operator on `Session` [#714](https://github.com/Shopify/shopify_api/pull/714)
60
+ - Implements equality operator on `Session` [#714](https://github.com/Shopify/shopify_api/pull/714)
41
61
 
42
62
  ## Version 9.0.4
43
63
 
44
- * Contains [#708](https://github.com/Shopify/shopify_api/pull/708) which is a revert for [#655](https://github.com/shopify/shopify_api/pull/655) due to the deprecated inventory parameters not being removed correctly in some cases
64
+ - Contains [#708](https://github.com/Shopify/shopify_api/pull/708) which is a revert for [#655](https://github.com/shopify/shopify_api/pull/655) due to the deprecated inventory parameters not being removed correctly in some cases
45
65
 
46
66
  ## Version 9.0.3
47
67
 
48
- * We now raise a `ShopifyAPI::ValidationException` exception when clients try to use `Product` and `Variant` with deprecated inventory-related fields in API version `2019-10` or later. [#655](https://github.com/shopify/shopify_api/pull/655) Deprecation and migration information can be found in the following documents:
49
- * [Product Variant REST API Reference](https://shopify.dev/docs/admin-api/rest/reference/products/product-variant)
50
- * [Migrate your app to support multiple locations](https://shopify.dev/tutorials/migrate-your-app-to-support-multiple-locations)
51
- * [Manage product inventory with the Admin API](https://shopify.dev/tutorials/manage-product-inventory-with-admin-api)
52
- * Added support for the Discount Code API batch endpoints [#701](https://github.com/shopify/shopify_api/pull/701)
53
- * [Create](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_create-2020-01)
54
- * [Show](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_show-2020-01)
55
- * [List](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_discount_codes_index-2020-01)
56
- * Fix issue in the README to explicitly say clients need to require the `shopify_api` gem [#700](https://github.com/Shopify/shopify_api/pull/700)
68
+ - We now raise a `ShopifyAPI::ValidationException` exception when clients try to use `Product` and `Variant` with deprecated inventory-related fields in API version `2019-10` or later. [#655](https://github.com/shopify/shopify_api/pull/655) Deprecation and migration information can be found in the following documents:
69
+ - [Product Variant REST API Reference](https://shopify.dev/docs/admin-api/rest/reference/products/product-variant)
70
+ - [Migrate your app to support multiple locations](https://shopify.dev/tutorials/migrate-your-app-to-support-multiple-locations)
71
+ - [Manage product inventory with the Admin API](https://shopify.dev/tutorials/manage-product-inventory-with-admin-api)
72
+ - Added support for the Discount Code API batch endpoints [#701](https://github.com/shopify/shopify_api/pull/701)
73
+ - [Create](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_create-2020-01)
74
+ - [Show](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_show-2020-01)
75
+ - [List](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_discount_codes_index-2020-01)
76
+ - Fix issue in the README to explicitly say clients need to require the `shopify_api` gem [#700](https://github.com/Shopify/shopify_api/pull/700)
57
77
 
58
78
  ## Version 9.0.2
59
79
 
60
- * Added optional flag passed to `initialize_clients` to prevent from raising the `InvalidSchema` exception [#693](https://github.com/Shopify/shopify_api/pull/693)
80
+ - Added optional flag passed to `initialize_clients` to prevent from raising the `InvalidSchema` exception [#693](https://github.com/Shopify/shopify_api/pull/693)
61
81
 
62
82
  ## Version 9.0.1
63
83
 
64
- * Added warning message if API version used is unsupported or soon to be unsupported [#685](https://github.com/Shopify/shopify_api/pull/685)
65
- * Take into account "errors" messages from response body [#677](https://github.com/Shopify/shopify_api/pull/677)
84
+ - Added warning message if API version used is unsupported or soon to be unsupported [#685](https://github.com/Shopify/shopify_api/pull/685)
85
+ - Take into account "errors" messages from response body [#677](https://github.com/Shopify/shopify_api/pull/677)
66
86
 
67
87
  ## Version 9.0.0
68
88
 
69
- * Breaking change: Improved GraphQL client [#672](https://github.com/Shopify/shopify_api/pull/672). See the [client docs](docs/graphql.md) for usage and a migration guide.
89
+ - Breaking change: Improved GraphQL client [#672](https://github.com/Shopify/shopify_api/pull/672). See the [client docs](docs/graphql.md) for usage and a migration guide.
70
90
 
71
- * Added options hash to create_permission_url and makes redirect_uri required [#670](https://github.com/Shopify/shopify_api/pull/670)
91
+ - Added options hash to create_permission_url and makes redirect_uri required [#670](https://github.com/Shopify/shopify_api/pull/670)
72
92
 
73
- * Release new Endpoint `fulfillment_order.locations_for_move` in 2020-01 REST API version [#669](https://github.com/Shopify/shopify_api/pull/669)
93
+ - Release new Endpoint `fulfillment_order.locations_for_move` in 2020-01 REST API version [#669](https://github.com/Shopify/shopify_api/pull/669)
74
94
 
75
- * Release new Endpoints for `fulfillment` in 2020-01 REST API version [#639](https://github.com/Shopify/shopify_api/pull/639):
76
- * `fulfillment.create` with `line_items_by_fulfillment_order`
77
- * `fulfillment.update_tracking`
78
- * `fulfillment.cancel`
95
+ - Release new Endpoints for `fulfillment` in 2020-01 REST API version [#639](https://github.com/Shopify/shopify_api/pull/639):
79
96
 
80
- * Release new Endpoints for `fulfillment_order` in 2020-01 REST API version [#637](https://github.com/Shopify/shopify_api/pull/637):
81
- * `fulfillment_order.fulfillment_request`
82
- * `fulfillment_order.fulfillment_request.accept`
83
- * `fulfillment_order.fulfillment_request.reject`
84
- * `fulfillment_order.cancellation_request`
85
- * `fulfillment_order.cancellation_request.accept`
86
- * `fulfillment_order.cancellation_request.reject`
97
+ - `fulfillment.create` with `line_items_by_fulfillment_order`
98
+ - `fulfillment.update_tracking`
99
+ - `fulfillment.cancel`
87
100
 
88
- * Release new Endpoints `fulfillment_order.move`, `fulfillment_order.cancel` and `fulfillment_order.close` in 2020-01 REST API version [#635](https://github.com/Shopify/shopify_api/pull/635)
101
+ - Release new Endpoints for `fulfillment_order` in 2020-01 REST API version [#637](https://github.com/Shopify/shopify_api/pull/637):
89
102
 
90
- * Release new Endpoint `order.fulfillment_orders`, and active resources `AssignedFulfillmentOrder` and `FulfillmentOrder` in 2020-01 REST API version [#633](https://github.com/Shopify/shopify_api/pull/633)
103
+ - `fulfillment_order.fulfillment_request`
104
+ - `fulfillment_order.fulfillment_request.accept`
105
+ - `fulfillment_order.fulfillment_request.reject`
106
+ - `fulfillment_order.cancellation_request`
107
+ - `fulfillment_order.cancellation_request.accept`
108
+ - `fulfillment_order.cancellation_request.reject`
109
+
110
+ - Release new Endpoints `fulfillment_order.move`, `fulfillment_order.cancel` and `fulfillment_order.close` in 2020-01 REST API version [#635](https://github.com/Shopify/shopify_api/pull/635)
111
+
112
+ - Release new Endpoint `order.fulfillment_orders`, and active resources `AssignedFulfillmentOrder` and `FulfillmentOrder` in 2020-01 REST API version [#633](https://github.com/Shopify/shopify_api/pull/633)
91
113
 
92
114
  ## Version 8.1.0
93
115
 
94
- * Release 2020-01 REST ADMIN API VERSION [#656](https://github.com/Shopify/shopify_api/pull/656)
95
- * Release new Endpoint `collection.products` and `collection.find()` in 2020-01 REST API version [#657](https://github.com/Shopify/shopify_api/pull/657)
96
- * Enrich 4xx errors with error message from response body [#647](https://github.com/Shopify/shopify_api/pull/647)
97
- * Make relative cursor based pagination work across page loads [#625](https://github.com/Shopify/shopify_api/pull/625)
98
- * Small ruby compat fix [#623](https://github.com/Shopify/shopify_api/pull/623)
99
- * Small consistency change [#621](https://github.com/Shopify/shopify_api/pull/621)
116
+ - Release 2020-01 REST ADMIN API VERSION [#656](https://github.com/Shopify/shopify_api/pull/656)
117
+ - Release new Endpoint `collection.products` and `collection.find()` in 2020-01 REST API version [#657](https://github.com/Shopify/shopify_api/pull/657)
118
+ - Enrich 4xx errors with error message from response body [#647](https://github.com/Shopify/shopify_api/pull/647)
119
+ - Make relative cursor based pagination work across page loads [#625](https://github.com/Shopify/shopify_api/pull/625)
120
+ - Small ruby compat fix [#623](https://github.com/Shopify/shopify_api/pull/623)
121
+ - Small consistency change [#621](https://github.com/Shopify/shopify_api/pull/621)
100
122
 
101
123
  ## Version 8.0.0
102
124
 
103
- * Api Version changes [#600](https://github.com/Shopify/shopify_api/pull/600)
104
- * Remove static Api Version definitions.
105
- * Introduces Api Version lookup modes: `:define_on_unknown` and `:raise_on_unknown`
106
- * See [migration notes](README.md#-breaking-change-notice-for-version-800-)
107
- * `Session.valid?` checks that api_version `is_a?(ApiVersion)` instead of `present?`
108
- * `ApiVersion::NullVersion` cannot be instantiated and now has a `match?` method [#615](https://github.com/Shopify/shopify_api/pull/615/files)
109
- * Introduces new Collection endpoint for looking up products without knowing collection type. Only available if ApiVersion is `:unstable` [#609](https://github.com/Shopify/shopify_api/pull/609)
125
+ - Api Version changes [#600](https://github.com/Shopify/shopify_api/pull/600)
126
+ - Remove static Api Version definitions.
127
+ - Introduces Api Version lookup modes: `:define_on_unknown` and `:raise_on_unknown`
128
+ - See [migration notes](README.md#-breaking-change-notice-for-version-800-)
129
+ - `Session.valid?` checks that api_version `is_a?(ApiVersion)` instead of `present?`
130
+ - `ApiVersion::NullVersion` cannot be instantiated and now has a `match?` method [#615](https://github.com/Shopify/shopify_api/pull/615/files)
131
+ - Introduces new Collection endpoint for looking up products without knowing collection type. Only available if ApiVersion is `:unstable` [#609](https://github.com/Shopify/shopify_api/pull/609)
110
132
 
111
133
  ## Version 7.1.0
112
134
 
113
- * Add 2019-10 to known API versions
114
- * Add support for cursor pagination [#594](https://github.com/Shopify/shopify_api/pull/594) and
115
- [#611](https://github.com/Shopify/shopify_api/pull/611)
116
- * `ShopifyAPI::Base.api_version` now defaults to `ShopifyAPI::ApiVersion::NullVersion` instead of `nil`. Making requests without first setting an ApiVersion raises `ApiVersionNotSetError` instead of `NoMethodError: undefined method 'construct_api_path' for nil:NilClass'` [#605](https://github.com/Shopify/shopify_api/pull/605)
135
+ - Add 2019-10 to known API versions
136
+ - Add support for cursor pagination [#594](https://github.com/Shopify/shopify_api/pull/594) and
137
+ [#611](https://github.com/Shopify/shopify_api/pull/611)
138
+ - `ShopifyAPI::Base.api_version` now defaults to `ShopifyAPI::ApiVersion::NullVersion` instead of `nil`. Making requests without first setting an ApiVersion raises `ApiVersionNotSetError` instead of `NoMethodError: undefined method 'construct_api_path' for nil:NilClass'` [#605](https://github.com/Shopify/shopify_api/pull/605)
117
139
 
118
140
  ## Version 7.0.2
119
141
 
120
- * Add 2019-07 to known API versions.
142
+ - Add 2019-07 to known API versions.
121
143
 
122
144
  ## Version 7.0.1
123
145
 
124
- * Support passing version string to `ShopifyAPI::Base.api_version` [#563](https://github.com/Shopify/shopify_api/pull/563)
146
+ - Support passing version string to `ShopifyAPI::Base.api_version` [#563](https://github.com/Shopify/shopify_api/pull/563)
125
147
 
126
148
  ## Version 7.0.0
127
149
 
128
- * Removed support for `ActiveResouce` < `4.1`.
129
- * Removed `ShopifyAPI::Oauth`.
130
- * Added api version support, See [migration
131
- notes](README.md#-breaking-change-notice-for-version-700-)
132
- * Changed `ShopifyAPI::Session` method signatures from positional to keyword
133
- arguments, See [migration notes](README.md#-breaking-change-notice-for-version-700-)
134
- * Add support for newer call limit header `X-Shopify-Shop-Api-Call-Limit`.
135
- * Removed all Ping resources.
150
+ - Removed support for `ActiveResouce` < `4.1`.
151
+ - Removed `ShopifyAPI::Oauth`.
152
+ - Added api version support, See [migration
153
+ notes](README.md#-breaking-change-notice-for-version-700-)
154
+ - Changed `ShopifyAPI::Session` method signatures from positional to keyword
155
+ arguments, See [migration notes](README.md#-breaking-change-notice-for-version-700-)
156
+ - Add support for newer call limit header `X-Shopify-Shop-Api-Call-Limit`.
157
+ - Removed all Ping resources.
136
158
 
137
159
  ## Version 6.0.0
138
160
 
139
- * Removed undocumented `protocol` and `port` options from `ShopifyAPI::Session`.
161
+ - Removed undocumented `protocol` and `port` options from `ShopifyAPI::Session`.
140
162
 
141
163
  ## Version 5.2.4
142
164
 
143
- * Added `currency` parameter to `ShopifyAPI::Order#capture`. This parameter is required for apps that belong to the
144
- multi-currency beta program.
165
+ - Added `currency` parameter to `ShopifyAPI::Order#capture`. This parameter is required for apps that belong to the
166
+ multi-currency beta program.
145
167
 
146
168
  ## Version 5.2.3
147
169
 
148
- * Update delivery confirmation resource to delivery confirmation details resource.
170
+ - Update delivery confirmation resource to delivery confirmation details resource.
149
171
 
150
172
  ## Version 5.2.2
151
173
 
152
- * Add delivery confirmation endpoint to Ping resources.
174
+ - Add delivery confirmation endpoint to Ping resources.
153
175
 
154
176
  ## Version 5.2.1
155
177
 
156
- * Log warning when Shopify indicates deprecated API call was performed
178
+ - Log warning when Shopify indicates deprecated API call was performed
157
179
 
158
180
  ## Version 5.2.0
159
181
 
160
- * Added `ShopifyAPI::Currency` to fetch list of supported currencies on a shop
161
- * Added `ShopifyAPI::TenderTransaction` to fetch list of transactions on a shop
162
- * Fixed bug with X-Shopify-Checkout-Version on ShopifyAPI::Checkout header being applied to all requests
182
+ - Added `ShopifyAPI::Currency` to fetch list of supported currencies on a shop
183
+ - Added `ShopifyAPI::TenderTransaction` to fetch list of transactions on a shop
184
+ - Fixed bug with X-Shopify-Checkout-Version on ShopifyAPI::Checkout header being applied to all requests
163
185
 
164
186
  ## Version 5.1.0
165
187
 
166
- * Added `ShopifyAPI::Publications`
167
- * Added `ShopifyAPI::ProductPublications`
168
- * Added `ShopifyAPI::CollectionPublications`
169
- * Added support for new collection products endpoint from `ShopifyAPI::Collection#products`
188
+ - Added `ShopifyAPI::Publications`
189
+ - Added `ShopifyAPI::ProductPublications`
190
+ - Added `ShopifyAPI::CollectionPublications`
191
+ - Added support for new collection products endpoint from `ShopifyAPI::Collection#products`
170
192
 
171
193
  ## Version 5.0.0
172
194
 
173
- * Breaking change: `ShopifyAPI::Checkout` now maps to the Checkout API, rather than the Abandoned Checkouts API
174
- * See the README for more details
175
- * Added `ShopifyAPI::AbandonedCheckout`
176
- * Added support for X-Shopify-Checkout-Version header on `ShopifyAPI::Checkout`
177
- * Added `ShopifyAPI::ShippingRate`
178
- * Added `ShopifyAPI::Payment`
179
- * Added support for `Checkout::complete` endpoint
180
- * Fixed session handling support for Rails 5.2.1
195
+ - Breaking change: `ShopifyAPI::Checkout` now maps to the Checkout API, rather than the Abandoned Checkouts API
196
+ - See the README for more details
197
+ - Added `ShopifyAPI::AbandonedCheckout`
198
+ - Added support for X-Shopify-Checkout-Version header on `ShopifyAPI::Checkout`
199
+ - Added `ShopifyAPI::ShippingRate`
200
+ - Added `ShopifyAPI::Payment`
201
+ - Added support for `Checkout::complete` endpoint
202
+ - Fixed session handling support for Rails 5.2.1
181
203
 
182
204
  ## Version 4.13.0
183
- * Added `ShopifyAPI::ApiPermission` resource for uninstalling an application
184
- * Added a deprecation warning to `ShopifyAPI::OAuth`
205
+
206
+ - Added `ShopifyAPI::ApiPermission` resource for uninstalling an application
207
+ - Added a deprecation warning to `ShopifyAPI::OAuth`
185
208
 
186
209
  ## Version 4.12.0
187
210
 
188
- * Added support for the GraphQL API
211
+ - Added support for the GraphQL API
189
212
 
190
213
  ## Version 4.11.0
191
214
 
192
- * Added `ShopifyAPI::InventoryItem`
193
- * Added `ShopifyAPI::InventoryLevel`
194
- * Added `#inventory_levels` method to `ShopifyAPI::Location`
215
+ - Added `ShopifyAPI::InventoryItem`
216
+ - Added `ShopifyAPI::InventoryLevel`
217
+ - Added `#inventory_levels` method to `ShopifyAPI::Location`
195
218
 
196
219
  ## Version 4.10.0
197
220
 
198
- * Added `ShopifyAPI::AccessScope`
221
+ - Added `ShopifyAPI::AccessScope`
199
222
 
200
223
  ## Version 4.9.1
201
224
 
202
- * Fix a bug with custom properties for orders
225
+ - Fix a bug with custom properties for orders
203
226
 
204
227
  ## Version 4.9.0
205
228
 
206
- * Added `ShopifyAPI::PriceRule`
207
- * Added `ShopifyAPI::DiscountCode`
229
+ - Added `ShopifyAPI::PriceRule`
230
+ - Added `ShopifyAPI::DiscountCode`
208
231
 
209
232
  ## Version 4.8.0
210
233
 
211
- * Added `add_engagements` to `ShopifyAPI::MarketingEvent`
234
+ - Added `add_engagements` to `ShopifyAPI::MarketingEvent`
212
235
 
213
236
  ## Version 4.7.1
214
237
 
215
- * Added support for URL parameter (e.g. limit & page) to ShopifyAPI::Metafields
216
- * Added support for URL parameter (e.g. limit & page) to metafield operator in ShopifyAPI::Shop
238
+ - Added support for URL parameter (e.g. limit & page) to ShopifyAPI::Metafields
239
+ - Added support for URL parameter (e.g. limit & page) to metafield operator in ShopifyAPI::Shop
217
240
 
218
241
  ## Version 4.7.0
219
242
 
220
- * Removed the mandatory `application_id` parameter from `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
221
- * Fixed a bug related to the non-standard primary key for `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
243
+ - Removed the mandatory `application_id` parameter from `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
244
+ - Fixed a bug related to the non-standard primary key for `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
222
245
 
223
246
  ## Version 4.6.0
224
247
 
225
- * Added `ShopifyAPI::Report`
248
+ - Added `ShopifyAPI::Report`
226
249
 
227
250
  ## Version 4.5.0
228
251
 
229
- * Added `ShopifyAPI::MarketingEvent`
252
+ - Added `ShopifyAPI::MarketingEvent`
230
253
 
231
254
  ## Version 4.4.0
232
255
 
233
- * Added `ShopifyAPI::CustomerInvite`
234
- * Support for Customer#send_invite endpoint
256
+ - Added `ShopifyAPI::CustomerInvite`
257
+ - Support for Customer#send_invite endpoint
235
258
 
236
259
  ## Version 4.3.8
237
260
 
238
- * Added `ShopifyAPI::ResourceFeedback`
261
+ - Added `ShopifyAPI::ResourceFeedback`
239
262
 
240
263
  ## Version 4.3.7
241
264
 
242
- * Added support for `complete` in `ShopifyAPI::DraftOrder`
265
+ - Added support for `complete` in `ShopifyAPI::DraftOrder`
243
266
 
244
267
  ## Version 4.3.6
245
268
 
246
- * Fixed the `customer_saved_search_id` param in `ShopifyAPI::CustomerSavedSearch#customers`.
269
+ - Fixed the `customer_saved_search_id` param in `ShopifyAPI::CustomerSavedSearch#customers`.
247
270
 
248
271
  ## Version 4.3.5
249
272
 
250
- * Added support for online mode access tokens, token expiry, and associated_user information.
251
- * Added `ShopifyAPI::DraftOrder`
252
- * Added `ShopifyAPI::DraftOrderInvoice`
273
+ - Added support for online mode access tokens, token expiry, and associated_user information.
274
+ - Added `ShopifyAPI::DraftOrder`
275
+ - Added `ShopifyAPI::DraftOrderInvoice`
253
276
 
254
277
  ## Version 4.3.4
255
278
 
256
- * Added `ShopifyAPI::ProductListing`
257
- * Added `ShopifyAPI::CollectionListing`
279
+ - Added `ShopifyAPI::ProductListing`
280
+ - Added `ShopifyAPI::CollectionListing`
258
281
 
259
282
  ## Version 4.3.3
260
283
 
261
- * Added `ShopifyAPI::StorefrontAccessToken`
284
+ - Added `ShopifyAPI::StorefrontAccessToken`
262
285
 
263
286
  ## Version 4.3.2
264
287
 
265
- * Relax Ruby version requirement to >= `2.0`
288
+ - Relax Ruby version requirement to >= `2.0`
266
289
 
267
290
  ## Version 4.3.1
268
291
 
269
- * Support for ShopifyAPI::ApplicationCredit
292
+ - Support for ShopifyAPI::ApplicationCredit
270
293
 
271
294
  ## Version 4.3.0
272
295
 
273
- * Require Ruby >= `2.3.0`
274
- * Use inheritance instead of the deprecated Rails `Module#alias_method_chain`
296
+ - Require Ruby >= `2.3.0`
297
+ - Use inheritance instead of the deprecated Rails `Module#alias_method_chain`
275
298
 
276
299
  ## Version 4.2.2
277
300
 
278
- * Support for AccessToken#delegate endpoint
301
+ - Support for AccessToken#delegate endpoint
279
302
 
280
303
  ## Version 4.2.1
281
304
 
282
- * Support for Users and Discounts (Shopify Plus only)
283
- * Adds Customer#account_activation_url method
284
- * Adds ability to open a fulfillment.
305
+ - Support for Users and Discounts (Shopify Plus only)
306
+ - Adds Customer#account_activation_url method
307
+ - Adds ability to open a fulfillment.
285
308
 
286
309
  ## Version 4.2.0
287
310
 
288
- * Threadsafety is now compatible with the latest ActiveResource master
311
+ - Threadsafety is now compatible with the latest ActiveResource master
289
312
 
290
313
  ## Version 4.1.1
291
314
 
292
- * Added explicit 90 second timeout to `ShopifyAPI::Base`
315
+ - Added explicit 90 second timeout to `ShopifyAPI::Base`
293
316
 
294
317
  ## Version 4.0.7
295
318
 
296
- * Added `ShippingAPI::ShippingZone`
319
+ - Added `ShippingAPI::ShippingZone`
297
320
 
298
321
  ## Version 4.0.6
299
322
 
300
- * Replaced `cancelled` with `expired` in `ShopifyAPI::ApplicationCharge`
323
+ - Replaced `cancelled` with `expired` in `ShopifyAPI::ApplicationCharge`
301
324
 
302
325
  ## Version 4.0.5
303
326
 
304
- * Added `pending`, `cancelled`, `accepted`, `declined` helper methods to `ShopifyAPI::ApplicationCharge`
327
+ - Added `pending`, `cancelled`, `accepted`, `declined` helper methods to `ShopifyAPI::ApplicationCharge`
305
328
 
306
329
  ## Version 4.0.4
307
330
 
308
- * Fixed truthiness for order cancellations. Requests are now sent in the request body and as JSON
331
+ - Fixed truthiness for order cancellations. Requests are now sent in the request body and as JSON
309
332
 
310
333
  ## Version 4.0.3
311
334
 
312
- * Fixed hmac signature validation for params with delimiters (`&`, `=` or `%`)
335
+ - Fixed hmac signature validation for params with delimiters (`&`, `=` or `%`)
313
336
 
314
337
  ## Version 4.0.2
315
338
 
316
- * Verify that the shop domain is a subdomain of .myshopify.com which creating the session
339
+ - Verify that the shop domain is a subdomain of .myshopify.com which creating the session
317
340
 
318
341
  ## Version 4.0.1
319
342
 
320
- * Added `ShopifyAPI::OAuth.revoke` for easy token revocation.
343
+ - Added `ShopifyAPI::OAuth.revoke` for easy token revocation.
321
344
 
322
345
  ## Version 3.2.6
323
346
 
324
- * Fixed CustomerSavedSearch#customers method to now correctly return only relevant customers
347
+ - Fixed CustomerSavedSearch#customers method to now correctly return only relevant customers
325
348
 
326
349
  ## Version 3.2.5
327
350
 
328
- * More useful error messages for activating nil sessions
329
- * Add tests for commonly deleted objects, and metafield tests, fix naming error in order_risk_test.rb
351
+ - More useful error messages for activating nil sessions
352
+ - Add tests for commonly deleted objects, and metafield tests, fix naming error in order_risk_test.rb
330
353
 
331
354
  ## Version 3.2.4
332
355
 
333
- * No API changes
356
+ - No API changes
334
357
 
335
358
  ## Version 3.2.3
336
359
 
337
- * Added pry to the CLI
360
+ - Added pry to the CLI
338
361
 
339
362
  ## Version 3.2.2
340
363
 
341
- * Temporary fix for the CLI
342
- * Add a specific exception for signature validation failures
364
+ - Temporary fix for the CLI
365
+ - Add a specific exception for signature validation failures
343
366
 
344
367
  ## Version 3.2.1
345
368
 
346
- * Added CarrierService resource
347
- * Added optionally using threadsafe ActiveResource (see readme)
348
- * Fixed bug in validate_signature
369
+ - Added CarrierService resource
370
+ - Added optionally using threadsafe ActiveResource (see readme)
371
+ - Fixed bug in validate_signature
349
372
 
350
373
  ## Version 3.2.0
351
374
 
352
- * in Session::request_token params is no longer optional, you must pass all the params and the method will now extract the code
353
- * Fixed JSON errors handling (#103)
354
- * Fixed compatibility with Ruby 2.1.x (#83)
355
- * Fixed getting parent ID from nested resources like Variants (#44)
356
- * Cleaned up compatibility with ActiveResource 4.0.x
357
- * Added OrderRisk resource
358
- * Added FulfillmentService resource
359
- * Removed discontinued ProductSearchEngine resource
360
- * Added convenience method Customer#search (#45)
375
+ - in Session::request_token params is no longer optional, you must pass all the params and the method will now extract the code
376
+ - Fixed JSON errors handling (#103)
377
+ - Fixed compatibility with Ruby 2.1.x (#83)
378
+ - Fixed getting parent ID from nested resources like Variants (#44)
379
+ - Cleaned up compatibility with ActiveResource 4.0.x
380
+ - Added OrderRisk resource
381
+ - Added FulfillmentService resource
382
+ - Removed discontinued ProductSearchEngine resource
383
+ - Added convenience method Customer#search (#45)
361
384
 
362
385
  ## Version 3.1.8
363
386
 
364
- * Expose `index` and `show` actions of `Location`
365
- * Added create_permission_url and request_token helper methods
366
- * Edited the readme to better describe the getting started procedure
387
+ - Expose `index` and `show` actions of `Location`
388
+ - Added create_permission_url and request_token helper methods
389
+ - Edited the readme to better describe the getting started procedure
367
390
 
368
391
  ## Version 3.1.7
369
392
 
370
- * Expose `authors` and `tags` action on Article
393
+ - Expose `authors` and `tags` action on Article
371
394
 
372
395
  ## Version 3.1.6
373
396
 
374
- * Add LineItem::Property resource
397
+ - Add LineItem::Property resource
375
398
 
376
399
  ## Version 3.1.5
377
400
 
378
- * Expose `orders` action on Customer
401
+ - Expose `orders` action on Customer
379
402
 
380
403
  ## Version 3.1.3
381
404
 
382
- * Expose `complete` action on Fulfillment
405
+ - Expose `complete` action on Fulfillment
383
406
 
384
407
  ## Version 3.1.2
385
408
 
386
- * Includes port in domain URI (when other than http/80 or https/443)
387
- * Adds access to CustomerSavedSearch
388
- * Adds resources: Order::DefaultAddress, Client::ClientDetails, Announcement
389
- * Allows access to Articles without a blog_id
390
- * Moves encode and as_json overrides to ShopifyAPI::Base scope
391
- * Exposes the `order` action in SmartCollection for general use
409
+ - Includes port in domain URI (when other than http/80 or https/443)
410
+ - Adds access to CustomerSavedSearch
411
+ - Adds resources: Order::DefaultAddress, Client::ClientDetails, Announcement
412
+ - Allows access to Articles without a blog_id
413
+ - Moves encode and as_json overrides to ShopifyAPI::Base scope
414
+ - Exposes the `order` action in SmartCollection for general use
392
415
 
393
416
  ## Version 3.0.3
394
417
 
395
- * Add a `customers` helper method to the CustomerGroup resource
418
+ - Add a `customers` helper method to the CustomerGroup resource
396
419
 
397
420
  ## Version 3.0.2
398
421
 
399
- * Brevity in require statements
422
+ - Brevity in require statements
400
423
 
401
424
  ## Version 3.0.1
402
425
 
403
- * Fix saving nested resources in ActiveResource 3.1+
426
+ - Fix saving nested resources in ActiveResource 3.1+
404
427
 
405
428
  ## Version 3.0.0
406
429
 
407
- * Added support for OAuth Authentication
408
- * Removal of support for Legacy Authentication
409
- * Added Cart resource
430
+ - Added support for OAuth Authentication
431
+ - Removal of support for Legacy Authentication
432
+ - Added Cart resource
410
433
 
411
434
  ## Version 2.3.0
412
435
 
413
- * Fix double root bug with ActiveSupport 3.2.0
414
- * Add metafields methods on Customer resource
415
- * Fix prefix_options on assets returned from Asset.find
436
+ - Fix double root bug with ActiveSupport 3.2.0
437
+ - Add metafields methods on Customer resource
438
+ - Fix prefix_options on assets returned from Asset.find
416
439
 
417
440
  ## Version 2.2.0
418
441
 
419
- * Fix issues with resources that have both direct and namespaced routes
420
- * Added detailed logger to help with debugging ActiveResource
421
- requests/responses
422
- * Add fulfillment#cancel
442
+ - Fix issues with resources that have both direct and namespaced routes
443
+ - Added detailed logger to help with debugging ActiveResource
444
+ requests/responses
445
+ - Add fulfillment#cancel
423
446
 
424
447
  ## Version 2.1.0
425
448
 
426
- * Fix JSON errors handling
427
- * Remove global limit from ShopifyAPI::Limits
449
+ - Fix JSON errors handling
450
+ - Remove global limit from ShopifyAPI::Limits
428
451
 
429
452
  ## Version 2.0.0
430
453
 
431
- * Bump to 2.0.0 as this release breaks Rails 2 compatibility; we're now officially only supporting Rails 3. Rails 2 devs can follow the rails2 tag in this repo to know where we broke off
432
- * Refactored resources into their own source files
433
- * Added API limits functionality
434
- * Patched ActiveResource issue with roots in JSON
435
- * Added pending, cancelled, accepted, and declined convenience methods to ShopifyAPI::RecurringApplicationCharge
436
- * ShopifyAPI::Session#temp now available as a convenience method to support temporarily switching to other shops when making calls
437
- * Fixes to `shopify console` CLI tool
454
+ - Bump to 2.0.0 as this release breaks Rails 2 compatibility; we're now officially only supporting Rails 3. Rails 2 devs can follow the rails2 tag in this repo to know where we broke off
455
+ - Refactored resources into their own source files
456
+ - Added API limits functionality
457
+ - Patched ActiveResource issue with roots in JSON
458
+ - Added pending, cancelled, accepted, and declined convenience methods to ShopifyAPI::RecurringApplicationCharge
459
+ - ShopifyAPI::Session#temp now available as a convenience method to support temporarily switching to other shops when making calls
460
+ - Fixes to `shopify console` CLI tool
438
461
 
439
462
  ## Version 1.2.5
440
463
 
441
- * Fix for Article#comments
464
+ - Fix for Article#comments
442
465
 
443
466
  ## Version 1.2.4
444
467
 
445
- * Added Article#comments
446
- * Added Order#cancel
447
- * Added Comment#restore, #not_spam
468
+ - Added Article#comments
469
+ - Added Order#cancel
470
+ - Added Comment#restore, #not_spam
448
471
 
449
472
  ## Version 1.2.3
450
473
 
451
- * Added Customer, CustomerGroup support
474
+ - Added Customer, CustomerGroup support
452
475
 
453
476
  ## Version 1.2.2
454
477
 
455
- * Added ScriptTag support
478
+ - Added ScriptTag support
456
479
 
457
480
  ## Version 1.2.1
458
481
 
459
- * Allow abbreviated names for all commands like rails does, e.g. 'shopify c' instead of 'shopify console'
460
- * Fix Variant to support accessing both nested variants with a product prefix as well as top level variants directly
461
- * Add 'grande' to supported product image size variants
482
+ - Allow abbreviated names for all commands like rails does, e.g. 'shopify c' instead of 'shopify console'
483
+ - Fix Variant to support accessing both nested variants with a product prefix as well as top level variants directly
484
+ - Add 'grande' to supported product image size variants
462
485
 
463
486
  ## Version 1.2.0
464
487
 
465
- * Command-line interface
466
- * Allow custom params when fetching a single Asset
488
+ - Command-line interface
489
+ - Allow custom params when fetching a single Asset
467
490
 
468
491
  ## Version 1.1.3 (November 4, 2010)
469
492
 
470
- * Add ProductSearchEngines resource
493
+ - Add ProductSearchEngines resource
471
494
 
472
495
  ## Version 1.1.2 (October 20, 2010)
473
496
 
474
- * Fix for users of ActiveResource 3.x
497
+ - Fix for users of ActiveResource 3.x
475
498
 
476
499
  ## Version 1.1.1 (October 5, 2010)
477
500
 
478
- * Remove hard coded xml formatting in API calls
479
- * Remove jeweler stuff
480
- * Ruby 1.9 encoding fix
501
+ - Remove hard coded xml formatting in API calls
502
+ - Remove jeweler stuff
503
+ - Ruby 1.9 encoding fix
481
504
 
482
505
  ## Version 1.1.0 (September 24, 2010)
483
506
 
484
- * Add new Events API for Shop, Order, Product, CustomCollection, SmartCollection, Page, Blog and Article
485
- * Add new 'compact' product image size variant
486
- * Rails 3 fix: attribute_accessors has to be explicitly included since activesupport 3.0.0
507
+ - Add new Events API for Shop, Order, Product, CustomCollection, SmartCollection, Page, Blog and Article
508
+ - Add new 'compact' product image size variant
509
+ - Rails 3 fix: attribute_accessors has to be explicitly included since activesupport 3.0.0
487
510
 
488
511
  ## Version 1.0.6
489
512
 
490
- * Add metafields
491
- * Add latest changes from Shopify including asset support, token validation and a common base class
513
+ - Add metafields
514
+ - Add latest changes from Shopify including asset support, token validation and a common base class
492
515
 
493
516
  ## Version 1.0.0
494
517
 
495
- * extracting ShopifyAPI from Shopify into Gem
518
+ - extracting ShopifyAPI from Shopify into Gem