shopify_api 9.2.0 → 12.2.0

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