shopify_api 9.5.1 → 13.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (936) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +1 -1
  3. data/.github/ISSUE_TEMPLATE/BUG_REPORT.md +40 -0
  4. data/.github/ISSUE_TEMPLATE/ENHANCEMENT.md +9 -0
  5. data/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +9 -0
  6. data/.github/api_update_reminder.md +25 -0
  7. data/.github/api_update_reminder_on_release.md +19 -0
  8. data/.github/dependabot.yml +20 -0
  9. data/.github/pull_request_template.md +20 -0
  10. data/.github/workflows/api_update_reminder.yml +16 -0
  11. data/.github/workflows/api_update_reminder_on_release.yml +16 -0
  12. data/.github/workflows/build.yml +18 -22
  13. data/.github/workflows/cla.yml +22 -0
  14. data/.github/workflows/close-waiting-for-response-issues.yml +20 -0
  15. data/.github/workflows/remove-labels-on-activity.yml +16 -0
  16. data/.github/workflows/stale.yml +43 -0
  17. data/.rubocop.yml +51 -17
  18. data/BREAKING_CHANGES_FOR_OLDER_VERSIONS.md +110 -0
  19. data/CHANGELOG.md +313 -213
  20. data/CONTRIBUTING.md +3 -2
  21. data/Gemfile +7 -4
  22. data/Gemfile.lock +123 -115
  23. data/LICENSE +2 -2
  24. data/README.md +78 -596
  25. data/RELEASING.md +19 -0
  26. data/Rakefile +14 -46
  27. data/SECURITY.md +2 -2
  28. data/bin/tapioca +29 -0
  29. data/dev.yml +22 -1
  30. data/docs/README.md +13 -0
  31. data/docs/getting_started.md +46 -0
  32. data/docs/issues.md +39 -0
  33. data/docs/usage/graphql.md +121 -0
  34. data/docs/usage/graphql_storefront.md +48 -0
  35. data/docs/usage/oauth.md +104 -0
  36. data/docs/usage/rest.md +144 -0
  37. data/docs/usage/session_storage.md +46 -0
  38. data/docs/usage/webhooks.md +98 -0
  39. data/lib/shopify_api/admin_versions.rb +22 -0
  40. data/lib/shopify_api/auth/associated_user.rb +36 -0
  41. data/lib/shopify_api/auth/auth_scopes.rb +75 -0
  42. data/lib/shopify_api/auth/jwt_payload.rb +83 -0
  43. data/lib/shopify_api/auth/oauth/auth_query.rb +47 -0
  44. data/lib/shopify_api/auth/oauth/session_cookie.rb +28 -0
  45. data/lib/shopify_api/auth/oauth.rb +133 -0
  46. data/lib/shopify_api/auth/session.rb +119 -0
  47. data/lib/shopify_api/auth.rb +26 -0
  48. data/lib/shopify_api/clients/graphql/admin.rb +15 -0
  49. data/lib/shopify_api/clients/graphql/client.rb +50 -0
  50. data/lib/shopify_api/clients/graphql/storefront.rb +35 -0
  51. data/lib/shopify_api/clients/http_client.rb +111 -0
  52. data/lib/shopify_api/clients/http_request.rb +35 -0
  53. data/lib/shopify_api/clients/http_response.rb +66 -0
  54. data/lib/shopify_api/clients/rest/admin.rb +129 -0
  55. data/lib/shopify_api/context.rb +181 -0
  56. data/lib/shopify_api/errors/context_not_setup_error.rb +9 -0
  57. data/lib/shopify_api/errors/cookie_not_found_error.rb +9 -0
  58. data/lib/shopify_api/errors/feature_deprecated_error.rb +9 -0
  59. data/lib/shopify_api/errors/http_response_error.rb +23 -0
  60. data/lib/shopify_api/errors/invalid_graphql_request_error.rb +9 -0
  61. data/lib/shopify_api/errors/invalid_http_request_error.rb +9 -0
  62. data/lib/shopify_api/errors/invalid_jwt_token_error.rb +9 -0
  63. data/lib/shopify_api/errors/invalid_oauth_error.rb +9 -0
  64. data/lib/shopify_api/errors/invalid_webhook_error.rb +9 -0
  65. data/lib/shopify_api/errors/invalid_webhook_registration_error.rb +9 -0
  66. data/lib/shopify_api/errors/log_level_not_found_error.rb +9 -0
  67. data/lib/shopify_api/errors/max_http_retries_exceeded_error.rb +9 -0
  68. data/lib/shopify_api/errors/missing_jwt_token_error.rb +9 -0
  69. data/lib/shopify_api/errors/missing_required_argument_error.rb +9 -0
  70. data/lib/shopify_api/errors/no_active_session_error.rb +9 -0
  71. data/lib/shopify_api/errors/no_session_cookie_error.rb +9 -0
  72. data/lib/shopify_api/errors/no_webhook_handler.rb +9 -0
  73. data/lib/shopify_api/errors/private_app_error.rb +9 -0
  74. data/lib/shopify_api/errors/request_access_token_error.rb +9 -0
  75. data/lib/shopify_api/errors/session_not_found_error.rb +9 -0
  76. data/lib/shopify_api/errors/session_storage_error.rb +9 -0
  77. data/lib/shopify_api/errors/unsupported_oauth_error.rb +9 -0
  78. data/lib/shopify_api/errors/unsupported_version_error.rb +9 -0
  79. data/lib/shopify_api/errors/webhook_registration_error.rb +9 -0
  80. data/lib/shopify_api/inflector.rb +17 -0
  81. data/lib/shopify_api/logger.rb +82 -0
  82. data/lib/shopify_api/rest/base.rb +434 -0
  83. data/lib/shopify_api/rest/base_errors.rb +32 -0
  84. data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +190 -0
  85. data/lib/shopify_api/rest/resources/2022_04/access_scope.rb +58 -0
  86. data/lib/shopify_api/rest/resources/2022_04/android_pay_key.rb +77 -0
  87. data/lib/shopify_api/rest/resources/2022_04/apple_pay_certificate.rb +105 -0
  88. data/lib/shopify_api/rest/resources/2022_04/application_charge.rb +109 -0
  89. data/lib/shopify_api/rest/resources/2022_04/application_credit.rb +92 -0
  90. data/lib/shopify_api/rest/resources/2022_04/article.rb +265 -0
  91. data/lib/shopify_api/rest/resources/2022_04/asset.rb +118 -0
  92. data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +86 -0
  93. data/lib/shopify_api/rest/resources/2022_04/balance.rb +50 -0
  94. data/lib/shopify_api/rest/resources/2022_04/blog.rb +162 -0
  95. data/lib/shopify_api/rest/resources/2022_04/cancellation_request.rb +83 -0
  96. data/lib/shopify_api/rest/resources/2022_04/carrier_service.rb +116 -0
  97. data/lib/shopify_api/rest/resources/2022_04/checkout.rb +209 -0
  98. data/lib/shopify_api/rest/resources/2022_04/collect.rb +142 -0
  99. data/lib/shopify_api/rest/resources/2022_04/collection.rb +110 -0
  100. data/lib/shopify_api/rest/resources/2022_04/collection_listing.rb +155 -0
  101. data/lib/shopify_api/rest/resources/2022_04/comment.rb +283 -0
  102. data/lib/shopify_api/rest/resources/2022_04/country.rb +137 -0
  103. data/lib/shopify_api/rest/resources/2022_04/currency.rb +57 -0
  104. data/lib/shopify_api/rest/resources/2022_04/custom_collection.rb +187 -0
  105. data/lib/shopify_api/rest/resources/2022_04/customer.rb +329 -0
  106. data/lib/shopify_api/rest/resources/2022_04/customer_address.rb +201 -0
  107. data/lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb +169 -0
  108. data/lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb +57 -0
  109. data/lib/shopify_api/rest/resources/2022_04/discount_code.rb +222 -0
  110. data/lib/shopify_api/rest/resources/2022_04/dispute.rb +111 -0
  111. data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +275 -0
  112. data/lib/shopify_api/rest/resources/2022_04/event.rb +148 -0
  113. data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +278 -0
  114. data/lib/shopify_api/rest/resources/2022_04/fulfillment_event.rb +166 -0
  115. data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +280 -0
  116. data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +87 -0
  117. data/lib/shopify_api/rest/resources/2022_04/fulfillment_service.rb +130 -0
  118. data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +218 -0
  119. data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +118 -0
  120. data/lib/shopify_api/rest/resources/2022_04/image.rb +157 -0
  121. data/lib/shopify_api/rest/resources/2022_04/inventory_item.rb +108 -0
  122. data/lib/shopify_api/rest/resources/2022_04/inventory_level.rb +179 -0
  123. data/lib/shopify_api/rest/resources/2022_04/location.rb +167 -0
  124. data/lib/shopify_api/rest/resources/2022_04/locations_for_move.rb +56 -0
  125. data/lib/shopify_api/rest/resources/2022_04/marketing_event.rb +209 -0
  126. data/lib/shopify_api/rest/resources/2022_04/metafield.rb +344 -0
  127. data/lib/shopify_api/rest/resources/2022_04/mobile_platform_application.rb +110 -0
  128. data/lib/shopify_api/rest/resources/2022_04/order.rb +473 -0
  129. data/lib/shopify_api/rest/resources/2022_04/order_risk.rb +142 -0
  130. data/lib/shopify_api/rest/resources/2022_04/page.rb +194 -0
  131. data/lib/shopify_api/rest/resources/2022_04/payment.rb +140 -0
  132. data/lib/shopify_api/rest/resources/2022_04/payment_gateway.rb +143 -0
  133. data/lib/shopify_api/rest/resources/2022_04/payment_transaction.rb +107 -0
  134. data/lib/shopify_api/rest/resources/2022_04/payout.rb +97 -0
  135. data/lib/shopify_api/rest/resources/2022_04/policy.rb +69 -0
  136. data/lib/shopify_api/rest/resources/2022_04/price_rule.rb +223 -0
  137. data/lib/shopify_api/rest/resources/2022_04/product.rb +223 -0
  138. data/lib/shopify_api/rest/resources/2022_04/product_listing.rb +196 -0
  139. data/lib/shopify_api/rest/resources/2022_04/product_resource_feedback.rb +88 -0
  140. data/lib/shopify_api/rest/resources/2022_04/province.rb +132 -0
  141. data/lib/shopify_api/rest/resources/2022_04/recurring_application_charge.rb +172 -0
  142. data/lib/shopify_api/rest/resources/2022_04/redirect.rb +139 -0
  143. data/lib/shopify_api/rest/resources/2022_04/refund.rb +151 -0
  144. data/lib/shopify_api/rest/resources/2022_04/report.rb +121 -0
  145. data/lib/shopify_api/rest/resources/2022_04/resource_feedback.rb +73 -0
  146. data/lib/shopify_api/rest/resources/2022_04/script_tag.rb +155 -0
  147. data/lib/shopify_api/rest/resources/2022_04/shipping_zone.rb +83 -0
  148. data/lib/shopify_api/rest/resources/2022_04/shop.rb +218 -0
  149. data/lib/shopify_api/rest/resources/2022_04/smart_collection.rb +216 -0
  150. data/lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb +87 -0
  151. data/lib/shopify_api/rest/resources/2022_04/tender_transaction.rb +93 -0
  152. data/lib/shopify_api/rest/resources/2022_04/theme.rb +123 -0
  153. data/lib/shopify_api/rest/resources/2022_04/transaction.rb +181 -0
  154. data/lib/shopify_api/rest/resources/2022_04/usage_charge.rb +102 -0
  155. data/lib/shopify_api/rest/resources/2022_04/user.rb +138 -0
  156. data/lib/shopify_api/rest/resources/2022_04/variant.rb +212 -0
  157. data/lib/shopify_api/rest/resources/2022_04/webhook.rb +168 -0
  158. data/lib/shopify_api/rest/resources/2022_07/abandoned_checkout.rb +190 -0
  159. data/lib/shopify_api/rest/resources/2022_07/access_scope.rb +58 -0
  160. data/lib/shopify_api/rest/resources/2022_07/android_pay_key.rb +77 -0
  161. data/lib/shopify_api/rest/resources/2022_07/apple_pay_certificate.rb +105 -0
  162. data/lib/shopify_api/rest/resources/2022_07/application_charge.rb +109 -0
  163. data/lib/shopify_api/rest/resources/2022_07/application_credit.rb +92 -0
  164. data/lib/shopify_api/rest/resources/2022_07/article.rb +265 -0
  165. data/lib/shopify_api/rest/resources/2022_07/asset.rb +118 -0
  166. data/lib/shopify_api/rest/resources/2022_07/assigned_fulfillment_order.rb +86 -0
  167. data/lib/shopify_api/rest/resources/2022_07/balance.rb +50 -0
  168. data/lib/shopify_api/rest/resources/2022_07/blog.rb +162 -0
  169. data/lib/shopify_api/rest/resources/2022_07/cancellation_request.rb +83 -0
  170. data/lib/shopify_api/rest/resources/2022_07/carrier_service.rb +116 -0
  171. data/lib/shopify_api/rest/resources/2022_07/checkout.rb +209 -0
  172. data/lib/shopify_api/rest/resources/2022_07/collect.rb +142 -0
  173. data/lib/shopify_api/rest/resources/2022_07/collection.rb +110 -0
  174. data/lib/shopify_api/rest/resources/2022_07/collection_listing.rb +155 -0
  175. data/lib/shopify_api/rest/resources/2022_07/comment.rb +283 -0
  176. data/lib/shopify_api/rest/resources/2022_07/country.rb +137 -0
  177. data/lib/shopify_api/rest/resources/2022_07/currency.rb +57 -0
  178. data/lib/shopify_api/rest/resources/2022_07/custom_collection.rb +187 -0
  179. data/lib/shopify_api/rest/resources/2022_07/customer.rb +329 -0
  180. data/lib/shopify_api/rest/resources/2022_07/customer_address.rb +201 -0
  181. data/lib/shopify_api/rest/resources/2022_07/customer_saved_search.rb +169 -0
  182. data/lib/shopify_api/rest/resources/2022_07/deprecated_api_call.rb +57 -0
  183. data/lib/shopify_api/rest/resources/2022_07/discount_code.rb +222 -0
  184. data/lib/shopify_api/rest/resources/2022_07/dispute.rb +111 -0
  185. data/lib/shopify_api/rest/resources/2022_07/dispute_evidence.rb +117 -0
  186. data/lib/shopify_api/rest/resources/2022_07/dispute_file_upload.rb +81 -0
  187. data/lib/shopify_api/rest/resources/2022_07/draft_order.rb +275 -0
  188. data/lib/shopify_api/rest/resources/2022_07/event.rb +148 -0
  189. data/lib/shopify_api/rest/resources/2022_07/fulfillment.rb +231 -0
  190. data/lib/shopify_api/rest/resources/2022_07/fulfillment_event.rb +166 -0
  191. data/lib/shopify_api/rest/resources/2022_07/fulfillment_order.rb +306 -0
  192. data/lib/shopify_api/rest/resources/2022_07/fulfillment_request.rb +87 -0
  193. data/lib/shopify_api/rest/resources/2022_07/fulfillment_service.rb +130 -0
  194. data/lib/shopify_api/rest/resources/2022_07/gift_card.rb +218 -0
  195. data/lib/shopify_api/rest/resources/2022_07/gift_card_adjustment.rb +118 -0
  196. data/lib/shopify_api/rest/resources/2022_07/image.rb +157 -0
  197. data/lib/shopify_api/rest/resources/2022_07/inventory_item.rb +108 -0
  198. data/lib/shopify_api/rest/resources/2022_07/inventory_level.rb +179 -0
  199. data/lib/shopify_api/rest/resources/2022_07/location.rb +167 -0
  200. data/lib/shopify_api/rest/resources/2022_07/locations_for_move.rb +56 -0
  201. data/lib/shopify_api/rest/resources/2022_07/marketing_event.rb +209 -0
  202. data/lib/shopify_api/rest/resources/2022_07/metafield.rb +344 -0
  203. data/lib/shopify_api/rest/resources/2022_07/mobile_platform_application.rb +110 -0
  204. data/lib/shopify_api/rest/resources/2022_07/order.rb +473 -0
  205. data/lib/shopify_api/rest/resources/2022_07/order_risk.rb +142 -0
  206. data/lib/shopify_api/rest/resources/2022_07/page.rb +194 -0
  207. data/lib/shopify_api/rest/resources/2022_07/payment.rb +140 -0
  208. data/lib/shopify_api/rest/resources/2022_07/payment_gateway.rb +143 -0
  209. data/lib/shopify_api/rest/resources/2022_07/payment_transaction.rb +107 -0
  210. data/lib/shopify_api/rest/resources/2022_07/payout.rb +97 -0
  211. data/lib/shopify_api/rest/resources/2022_07/policy.rb +69 -0
  212. data/lib/shopify_api/rest/resources/2022_07/price_rule.rb +223 -0
  213. data/lib/shopify_api/rest/resources/2022_07/product.rb +223 -0
  214. data/lib/shopify_api/rest/resources/2022_07/product_listing.rb +196 -0
  215. data/lib/shopify_api/rest/resources/2022_07/product_resource_feedback.rb +88 -0
  216. data/lib/shopify_api/rest/resources/2022_07/province.rb +132 -0
  217. data/lib/shopify_api/rest/resources/2022_07/recurring_application_charge.rb +172 -0
  218. data/lib/shopify_api/rest/resources/2022_07/redirect.rb +139 -0
  219. data/lib/shopify_api/rest/resources/2022_07/refund.rb +151 -0
  220. data/lib/shopify_api/rest/resources/2022_07/report.rb +121 -0
  221. data/lib/shopify_api/rest/resources/2022_07/resource_feedback.rb +73 -0
  222. data/lib/shopify_api/rest/resources/2022_07/script_tag.rb +155 -0
  223. data/lib/shopify_api/rest/resources/2022_07/shipping_zone.rb +83 -0
  224. data/lib/shopify_api/rest/resources/2022_07/shop.rb +218 -0
  225. data/lib/shopify_api/rest/resources/2022_07/smart_collection.rb +216 -0
  226. data/lib/shopify_api/rest/resources/2022_07/storefront_access_token.rb +87 -0
  227. data/lib/shopify_api/rest/resources/2022_07/tender_transaction.rb +93 -0
  228. data/lib/shopify_api/rest/resources/2022_07/theme.rb +123 -0
  229. data/lib/shopify_api/rest/resources/2022_07/transaction.rb +181 -0
  230. data/lib/shopify_api/rest/resources/2022_07/usage_charge.rb +102 -0
  231. data/lib/shopify_api/rest/resources/2022_07/user.rb +138 -0
  232. data/lib/shopify_api/rest/resources/2022_07/variant.rb +212 -0
  233. data/lib/shopify_api/rest/resources/2022_07/webhook.rb +168 -0
  234. data/lib/shopify_api/rest/resources/2022_10/abandoned_checkout.rb +190 -0
  235. data/lib/shopify_api/rest/resources/2022_10/access_scope.rb +58 -0
  236. data/lib/shopify_api/rest/resources/2022_10/android_pay_key.rb +77 -0
  237. data/lib/shopify_api/rest/resources/2022_10/apple_pay_certificate.rb +105 -0
  238. data/lib/shopify_api/rest/resources/2022_10/application_charge.rb +109 -0
  239. data/lib/shopify_api/rest/resources/2022_10/application_credit.rb +92 -0
  240. data/lib/shopify_api/rest/resources/2022_10/article.rb +265 -0
  241. data/lib/shopify_api/rest/resources/2022_10/asset.rb +118 -0
  242. data/lib/shopify_api/rest/resources/2022_10/assigned_fulfillment_order.rb +86 -0
  243. data/lib/shopify_api/rest/resources/2022_10/balance.rb +50 -0
  244. data/lib/shopify_api/rest/resources/2022_10/blog.rb +162 -0
  245. data/lib/shopify_api/rest/resources/2022_10/cancellation_request.rb +83 -0
  246. data/lib/shopify_api/rest/resources/2022_10/carrier_service.rb +116 -0
  247. data/lib/shopify_api/rest/resources/2022_10/checkout.rb +209 -0
  248. data/lib/shopify_api/rest/resources/2022_10/collect.rb +142 -0
  249. data/lib/shopify_api/rest/resources/2022_10/collection.rb +110 -0
  250. data/lib/shopify_api/rest/resources/2022_10/collection_listing.rb +155 -0
  251. data/lib/shopify_api/rest/resources/2022_10/comment.rb +283 -0
  252. data/lib/shopify_api/rest/resources/2022_10/country.rb +137 -0
  253. data/lib/shopify_api/rest/resources/2022_10/currency.rb +57 -0
  254. data/lib/shopify_api/rest/resources/2022_10/custom_collection.rb +187 -0
  255. data/lib/shopify_api/rest/resources/2022_10/customer.rb +329 -0
  256. data/lib/shopify_api/rest/resources/2022_10/customer_address.rb +201 -0
  257. data/lib/shopify_api/rest/resources/2022_10/customer_saved_search.rb +169 -0
  258. data/lib/shopify_api/rest/resources/2022_10/deprecated_api_call.rb +57 -0
  259. data/lib/shopify_api/rest/resources/2022_10/discount_code.rb +222 -0
  260. data/lib/shopify_api/rest/resources/2022_10/dispute.rb +111 -0
  261. data/lib/shopify_api/rest/resources/2022_10/dispute_evidence.rb +117 -0
  262. data/lib/shopify_api/rest/resources/2022_10/dispute_file_upload.rb +81 -0
  263. data/lib/shopify_api/rest/resources/2022_10/draft_order.rb +275 -0
  264. data/lib/shopify_api/rest/resources/2022_10/event.rb +148 -0
  265. data/lib/shopify_api/rest/resources/2022_10/fulfillment.rb +231 -0
  266. data/lib/shopify_api/rest/resources/2022_10/fulfillment_event.rb +166 -0
  267. data/lib/shopify_api/rest/resources/2022_10/fulfillment_order.rb +306 -0
  268. data/lib/shopify_api/rest/resources/2022_10/fulfillment_request.rb +87 -0
  269. data/lib/shopify_api/rest/resources/2022_10/fulfillment_service.rb +130 -0
  270. data/lib/shopify_api/rest/resources/2022_10/gift_card.rb +218 -0
  271. data/lib/shopify_api/rest/resources/2022_10/gift_card_adjustment.rb +118 -0
  272. data/lib/shopify_api/rest/resources/2022_10/image.rb +157 -0
  273. data/lib/shopify_api/rest/resources/2022_10/inventory_item.rb +108 -0
  274. data/lib/shopify_api/rest/resources/2022_10/inventory_level.rb +179 -0
  275. data/lib/shopify_api/rest/resources/2022_10/location.rb +167 -0
  276. data/lib/shopify_api/rest/resources/2022_10/locations_for_move.rb +56 -0
  277. data/lib/shopify_api/rest/resources/2022_10/marketing_event.rb +209 -0
  278. data/lib/shopify_api/rest/resources/2022_10/metafield.rb +344 -0
  279. data/lib/shopify_api/rest/resources/2022_10/mobile_platform_application.rb +110 -0
  280. data/lib/shopify_api/rest/resources/2022_10/order.rb +476 -0
  281. data/lib/shopify_api/rest/resources/2022_10/order_risk.rb +142 -0
  282. data/lib/shopify_api/rest/resources/2022_10/page.rb +194 -0
  283. data/lib/shopify_api/rest/resources/2022_10/payment.rb +140 -0
  284. data/lib/shopify_api/rest/resources/2022_10/payment_gateway.rb +143 -0
  285. data/lib/shopify_api/rest/resources/2022_10/payment_transaction.rb +107 -0
  286. data/lib/shopify_api/rest/resources/2022_10/payout.rb +97 -0
  287. data/lib/shopify_api/rest/resources/2022_10/policy.rb +69 -0
  288. data/lib/shopify_api/rest/resources/2022_10/price_rule.rb +223 -0
  289. data/lib/shopify_api/rest/resources/2022_10/product.rb +223 -0
  290. data/lib/shopify_api/rest/resources/2022_10/product_listing.rb +196 -0
  291. data/lib/shopify_api/rest/resources/2022_10/product_resource_feedback.rb +88 -0
  292. data/lib/shopify_api/rest/resources/2022_10/province.rb +132 -0
  293. data/lib/shopify_api/rest/resources/2022_10/recurring_application_charge.rb +172 -0
  294. data/lib/shopify_api/rest/resources/2022_10/redirect.rb +139 -0
  295. data/lib/shopify_api/rest/resources/2022_10/refund.rb +151 -0
  296. data/lib/shopify_api/rest/resources/2022_10/report.rb +121 -0
  297. data/lib/shopify_api/rest/resources/2022_10/resource_feedback.rb +73 -0
  298. data/lib/shopify_api/rest/resources/2022_10/script_tag.rb +155 -0
  299. data/lib/shopify_api/rest/resources/2022_10/shipping_zone.rb +83 -0
  300. data/lib/shopify_api/rest/resources/2022_10/shop.rb +221 -0
  301. data/lib/shopify_api/rest/resources/2022_10/smart_collection.rb +216 -0
  302. data/lib/shopify_api/rest/resources/2022_10/storefront_access_token.rb +87 -0
  303. data/lib/shopify_api/rest/resources/2022_10/tender_transaction.rb +93 -0
  304. data/lib/shopify_api/rest/resources/2022_10/theme.rb +123 -0
  305. data/lib/shopify_api/rest/resources/2022_10/transaction.rb +181 -0
  306. data/lib/shopify_api/rest/resources/2022_10/usage_charge.rb +102 -0
  307. data/lib/shopify_api/rest/resources/2022_10/user.rb +138 -0
  308. data/lib/shopify_api/rest/resources/2022_10/variant.rb +212 -0
  309. data/lib/shopify_api/rest/resources/2022_10/webhook.rb +168 -0
  310. data/lib/shopify_api/rest/resources/2023_01/abandoned_checkout.rb +190 -0
  311. data/lib/shopify_api/rest/resources/2023_01/access_scope.rb +58 -0
  312. data/lib/shopify_api/rest/resources/2023_01/apple_pay_certificate.rb +105 -0
  313. data/lib/shopify_api/rest/resources/2023_01/application_charge.rb +109 -0
  314. data/lib/shopify_api/rest/resources/2023_01/application_credit.rb +92 -0
  315. data/lib/shopify_api/rest/resources/2023_01/article.rb +265 -0
  316. data/lib/shopify_api/rest/resources/2023_01/asset.rb +118 -0
  317. data/lib/shopify_api/rest/resources/2023_01/assigned_fulfillment_order.rb +86 -0
  318. data/lib/shopify_api/rest/resources/2023_01/balance.rb +50 -0
  319. data/lib/shopify_api/rest/resources/2023_01/blog.rb +162 -0
  320. data/lib/shopify_api/rest/resources/2023_01/cancellation_request.rb +83 -0
  321. data/lib/shopify_api/rest/resources/2023_01/carrier_service.rb +116 -0
  322. data/lib/shopify_api/rest/resources/2023_01/checkout.rb +209 -0
  323. data/lib/shopify_api/rest/resources/2023_01/collect.rb +142 -0
  324. data/lib/shopify_api/rest/resources/2023_01/collection.rb +110 -0
  325. data/lib/shopify_api/rest/resources/2023_01/collection_listing.rb +155 -0
  326. data/lib/shopify_api/rest/resources/2023_01/comment.rb +283 -0
  327. data/lib/shopify_api/rest/resources/2023_01/country.rb +137 -0
  328. data/lib/shopify_api/rest/resources/2023_01/currency.rb +57 -0
  329. data/lib/shopify_api/rest/resources/2023_01/custom_collection.rb +187 -0
  330. data/lib/shopify_api/rest/resources/2023_01/customer.rb +329 -0
  331. data/lib/shopify_api/rest/resources/2023_01/customer_address.rb +201 -0
  332. data/lib/shopify_api/rest/resources/2023_01/customer_saved_search.rb +169 -0
  333. data/lib/shopify_api/rest/resources/2023_01/deprecated_api_call.rb +57 -0
  334. data/lib/shopify_api/rest/resources/2023_01/discount_code.rb +222 -0
  335. data/lib/shopify_api/rest/resources/2023_01/dispute.rb +111 -0
  336. data/lib/shopify_api/rest/resources/2023_01/dispute_evidence.rb +117 -0
  337. data/lib/shopify_api/rest/resources/2023_01/dispute_file_upload.rb +81 -0
  338. data/lib/shopify_api/rest/resources/2023_01/draft_order.rb +275 -0
  339. data/lib/shopify_api/rest/resources/2023_01/event.rb +148 -0
  340. data/lib/shopify_api/rest/resources/2023_01/fulfillment.rb +231 -0
  341. data/lib/shopify_api/rest/resources/2023_01/fulfillment_event.rb +166 -0
  342. data/lib/shopify_api/rest/resources/2023_01/fulfillment_order.rb +312 -0
  343. data/lib/shopify_api/rest/resources/2023_01/fulfillment_request.rb +87 -0
  344. data/lib/shopify_api/rest/resources/2023_01/fulfillment_service.rb +130 -0
  345. data/lib/shopify_api/rest/resources/2023_01/gift_card.rb +218 -0
  346. data/lib/shopify_api/rest/resources/2023_01/gift_card_adjustment.rb +118 -0
  347. data/lib/shopify_api/rest/resources/2023_01/image.rb +157 -0
  348. data/lib/shopify_api/rest/resources/2023_01/inventory_item.rb +108 -0
  349. data/lib/shopify_api/rest/resources/2023_01/inventory_level.rb +179 -0
  350. data/lib/shopify_api/rest/resources/2023_01/location.rb +167 -0
  351. data/lib/shopify_api/rest/resources/2023_01/locations_for_move.rb +56 -0
  352. data/lib/shopify_api/rest/resources/2023_01/marketing_event.rb +209 -0
  353. data/lib/shopify_api/rest/resources/2023_01/metafield.rb +344 -0
  354. data/lib/shopify_api/rest/resources/2023_01/mobile_platform_application.rb +110 -0
  355. data/lib/shopify_api/rest/resources/2023_01/order.rb +479 -0
  356. data/lib/shopify_api/rest/resources/2023_01/order_risk.rb +142 -0
  357. data/lib/shopify_api/rest/resources/2023_01/page.rb +194 -0
  358. data/lib/shopify_api/rest/resources/2023_01/payment.rb +140 -0
  359. data/lib/shopify_api/rest/resources/2023_01/payment_gateway.rb +143 -0
  360. data/lib/shopify_api/rest/resources/2023_01/payment_transaction.rb +107 -0
  361. data/lib/shopify_api/rest/resources/2023_01/payout.rb +97 -0
  362. data/lib/shopify_api/rest/resources/2023_01/policy.rb +69 -0
  363. data/lib/shopify_api/rest/resources/2023_01/price_rule.rb +223 -0
  364. data/lib/shopify_api/rest/resources/2023_01/product.rb +223 -0
  365. data/lib/shopify_api/rest/resources/2023_01/product_listing.rb +196 -0
  366. data/lib/shopify_api/rest/resources/2023_01/product_resource_feedback.rb +88 -0
  367. data/lib/shopify_api/rest/resources/2023_01/province.rb +132 -0
  368. data/lib/shopify_api/rest/resources/2023_01/recurring_application_charge.rb +172 -0
  369. data/lib/shopify_api/rest/resources/2023_01/redirect.rb +139 -0
  370. data/lib/shopify_api/rest/resources/2023_01/refund.rb +151 -0
  371. data/lib/shopify_api/rest/resources/2023_01/report.rb +121 -0
  372. data/lib/shopify_api/rest/resources/2023_01/resource_feedback.rb +73 -0
  373. data/lib/shopify_api/rest/resources/2023_01/script_tag.rb +155 -0
  374. data/lib/shopify_api/rest/resources/2023_01/shipping_zone.rb +83 -0
  375. data/lib/shopify_api/rest/resources/2023_01/shop.rb +221 -0
  376. data/lib/shopify_api/rest/resources/2023_01/smart_collection.rb +216 -0
  377. data/lib/shopify_api/rest/resources/2023_01/storefront_access_token.rb +87 -0
  378. data/lib/shopify_api/rest/resources/2023_01/tender_transaction.rb +93 -0
  379. data/lib/shopify_api/rest/resources/2023_01/theme.rb +123 -0
  380. data/lib/shopify_api/rest/resources/2023_01/transaction.rb +181 -0
  381. data/lib/shopify_api/rest/resources/2023_01/usage_charge.rb +102 -0
  382. data/lib/shopify_api/rest/resources/2023_01/user.rb +138 -0
  383. data/lib/shopify_api/rest/resources/2023_01/variant.rb +212 -0
  384. data/lib/shopify_api/rest/resources/2023_01/webhook.rb +168 -0
  385. data/lib/shopify_api/rest/resources/2023_04/abandoned_checkout.rb +190 -0
  386. data/lib/shopify_api/rest/resources/2023_04/access_scope.rb +58 -0
  387. data/lib/shopify_api/rest/resources/2023_04/apple_pay_certificate.rb +105 -0
  388. data/lib/shopify_api/rest/resources/2023_04/application_charge.rb +109 -0
  389. data/lib/shopify_api/rest/resources/2023_04/application_credit.rb +92 -0
  390. data/lib/shopify_api/rest/resources/2023_04/article.rb +265 -0
  391. data/lib/shopify_api/rest/resources/2023_04/asset.rb +118 -0
  392. data/lib/shopify_api/rest/resources/2023_04/assigned_fulfillment_order.rb +86 -0
  393. data/lib/shopify_api/rest/resources/2023_04/balance.rb +50 -0
  394. data/lib/shopify_api/rest/resources/2023_04/blog.rb +162 -0
  395. data/lib/shopify_api/rest/resources/2023_04/cancellation_request.rb +83 -0
  396. data/lib/shopify_api/rest/resources/2023_04/carrier_service.rb +116 -0
  397. data/lib/shopify_api/rest/resources/2023_04/checkout.rb +209 -0
  398. data/lib/shopify_api/rest/resources/2023_04/collect.rb +142 -0
  399. data/lib/shopify_api/rest/resources/2023_04/collection.rb +110 -0
  400. data/lib/shopify_api/rest/resources/2023_04/collection_listing.rb +155 -0
  401. data/lib/shopify_api/rest/resources/2023_04/comment.rb +283 -0
  402. data/lib/shopify_api/rest/resources/2023_04/country.rb +137 -0
  403. data/lib/shopify_api/rest/resources/2023_04/currency.rb +57 -0
  404. data/lib/shopify_api/rest/resources/2023_04/custom_collection.rb +187 -0
  405. data/lib/shopify_api/rest/resources/2023_04/customer.rb +329 -0
  406. data/lib/shopify_api/rest/resources/2023_04/customer_address.rb +201 -0
  407. data/lib/shopify_api/rest/resources/2023_04/customer_saved_search.rb +169 -0
  408. data/lib/shopify_api/rest/resources/2023_04/deprecated_api_call.rb +57 -0
  409. data/lib/shopify_api/rest/resources/2023_04/discount_code.rb +222 -0
  410. data/lib/shopify_api/rest/resources/2023_04/dispute.rb +111 -0
  411. data/lib/shopify_api/rest/resources/2023_04/dispute_evidence.rb +117 -0
  412. data/lib/shopify_api/rest/resources/2023_04/dispute_file_upload.rb +81 -0
  413. data/lib/shopify_api/rest/resources/2023_04/draft_order.rb +275 -0
  414. data/lib/shopify_api/rest/resources/2023_04/event.rb +148 -0
  415. data/lib/shopify_api/rest/resources/2023_04/fulfillment.rb +231 -0
  416. data/lib/shopify_api/rest/resources/2023_04/fulfillment_event.rb +166 -0
  417. data/lib/shopify_api/rest/resources/2023_04/fulfillment_order.rb +312 -0
  418. data/lib/shopify_api/rest/resources/2023_04/fulfillment_request.rb +87 -0
  419. data/lib/shopify_api/rest/resources/2023_04/fulfillment_service.rb +130 -0
  420. data/lib/shopify_api/rest/resources/2023_04/gift_card.rb +218 -0
  421. data/lib/shopify_api/rest/resources/2023_04/gift_card_adjustment.rb +118 -0
  422. data/lib/shopify_api/rest/resources/2023_04/image.rb +157 -0
  423. data/lib/shopify_api/rest/resources/2023_04/inventory_item.rb +108 -0
  424. data/lib/shopify_api/rest/resources/2023_04/inventory_level.rb +179 -0
  425. data/lib/shopify_api/rest/resources/2023_04/location.rb +167 -0
  426. data/lib/shopify_api/rest/resources/2023_04/locations_for_move.rb +56 -0
  427. data/lib/shopify_api/rest/resources/2023_04/marketing_event.rb +209 -0
  428. data/lib/shopify_api/rest/resources/2023_04/metafield.rb +344 -0
  429. data/lib/shopify_api/rest/resources/2023_04/mobile_platform_application.rb +110 -0
  430. data/lib/shopify_api/rest/resources/2023_04/order.rb +485 -0
  431. data/lib/shopify_api/rest/resources/2023_04/order_risk.rb +142 -0
  432. data/lib/shopify_api/rest/resources/2023_04/page.rb +194 -0
  433. data/lib/shopify_api/rest/resources/2023_04/payment.rb +140 -0
  434. data/lib/shopify_api/rest/resources/2023_04/payment_gateway.rb +143 -0
  435. data/lib/shopify_api/rest/resources/2023_04/payment_transaction.rb +107 -0
  436. data/lib/shopify_api/rest/resources/2023_04/payout.rb +97 -0
  437. data/lib/shopify_api/rest/resources/2023_04/policy.rb +69 -0
  438. data/lib/shopify_api/rest/resources/2023_04/price_rule.rb +223 -0
  439. data/lib/shopify_api/rest/resources/2023_04/product.rb +223 -0
  440. data/lib/shopify_api/rest/resources/2023_04/product_listing.rb +196 -0
  441. data/lib/shopify_api/rest/resources/2023_04/product_resource_feedback.rb +88 -0
  442. data/lib/shopify_api/rest/resources/2023_04/province.rb +132 -0
  443. data/lib/shopify_api/rest/resources/2023_04/recurring_application_charge.rb +172 -0
  444. data/lib/shopify_api/rest/resources/2023_04/redirect.rb +139 -0
  445. data/lib/shopify_api/rest/resources/2023_04/refund.rb +151 -0
  446. data/lib/shopify_api/rest/resources/2023_04/report.rb +121 -0
  447. data/lib/shopify_api/rest/resources/2023_04/resource_feedback.rb +73 -0
  448. data/lib/shopify_api/rest/resources/2023_04/script_tag.rb +155 -0
  449. data/lib/shopify_api/rest/resources/2023_04/shipping_zone.rb +83 -0
  450. data/lib/shopify_api/rest/resources/2023_04/shop.rb +221 -0
  451. data/lib/shopify_api/rest/resources/2023_04/smart_collection.rb +216 -0
  452. data/lib/shopify_api/rest/resources/2023_04/storefront_access_token.rb +87 -0
  453. data/lib/shopify_api/rest/resources/2023_04/tender_transaction.rb +93 -0
  454. data/lib/shopify_api/rest/resources/2023_04/theme.rb +123 -0
  455. data/lib/shopify_api/rest/resources/2023_04/transaction.rb +184 -0
  456. data/lib/shopify_api/rest/resources/2023_04/usage_charge.rb +102 -0
  457. data/lib/shopify_api/rest/resources/2023_04/user.rb +138 -0
  458. data/lib/shopify_api/rest/resources/2023_04/variant.rb +212 -0
  459. data/lib/shopify_api/rest/resources/2023_04/webhook.rb +168 -0
  460. data/lib/shopify_api/rest/resources/2023_07/abandoned_checkout.rb +190 -0
  461. data/lib/shopify_api/rest/resources/2023_07/access_scope.rb +58 -0
  462. data/lib/shopify_api/rest/resources/2023_07/apple_pay_certificate.rb +105 -0
  463. data/lib/shopify_api/rest/resources/2023_07/application_charge.rb +109 -0
  464. data/lib/shopify_api/rest/resources/2023_07/application_credit.rb +91 -0
  465. data/lib/shopify_api/rest/resources/2023_07/article.rb +265 -0
  466. data/lib/shopify_api/rest/resources/2023_07/asset.rb +118 -0
  467. data/lib/shopify_api/rest/resources/2023_07/assigned_fulfillment_order.rb +86 -0
  468. data/lib/shopify_api/rest/resources/2023_07/balance.rb +50 -0
  469. data/lib/shopify_api/rest/resources/2023_07/blog.rb +162 -0
  470. data/lib/shopify_api/rest/resources/2023_07/cancellation_request.rb +83 -0
  471. data/lib/shopify_api/rest/resources/2023_07/carrier_service.rb +116 -0
  472. data/lib/shopify_api/rest/resources/2023_07/checkout.rb +209 -0
  473. data/lib/shopify_api/rest/resources/2023_07/collect.rb +142 -0
  474. data/lib/shopify_api/rest/resources/2023_07/collection.rb +110 -0
  475. data/lib/shopify_api/rest/resources/2023_07/collection_listing.rb +155 -0
  476. data/lib/shopify_api/rest/resources/2023_07/comment.rb +283 -0
  477. data/lib/shopify_api/rest/resources/2023_07/country.rb +137 -0
  478. data/lib/shopify_api/rest/resources/2023_07/currency.rb +57 -0
  479. data/lib/shopify_api/rest/resources/2023_07/custom_collection.rb +187 -0
  480. data/lib/shopify_api/rest/resources/2023_07/customer.rb +329 -0
  481. data/lib/shopify_api/rest/resources/2023_07/customer_address.rb +201 -0
  482. data/lib/shopify_api/rest/resources/2023_07/customer_saved_search.rb +169 -0
  483. data/lib/shopify_api/rest/resources/2023_07/deprecated_api_call.rb +57 -0
  484. data/lib/shopify_api/rest/resources/2023_07/discount_code.rb +222 -0
  485. data/lib/shopify_api/rest/resources/2023_07/dispute.rb +111 -0
  486. data/lib/shopify_api/rest/resources/2023_07/dispute_evidence.rb +117 -0
  487. data/lib/shopify_api/rest/resources/2023_07/dispute_file_upload.rb +81 -0
  488. data/lib/shopify_api/rest/resources/2023_07/draft_order.rb +275 -0
  489. data/lib/shopify_api/rest/resources/2023_07/event.rb +148 -0
  490. data/lib/shopify_api/rest/resources/2023_07/fulfillment.rb +231 -0
  491. data/lib/shopify_api/rest/resources/2023_07/fulfillment_event.rb +166 -0
  492. data/lib/shopify_api/rest/resources/2023_07/fulfillment_order.rb +312 -0
  493. data/lib/shopify_api/rest/resources/2023_07/fulfillment_request.rb +87 -0
  494. data/lib/shopify_api/rest/resources/2023_07/fulfillment_service.rb +130 -0
  495. data/lib/shopify_api/rest/resources/2023_07/gift_card.rb +218 -0
  496. data/lib/shopify_api/rest/resources/2023_07/gift_card_adjustment.rb +118 -0
  497. data/lib/shopify_api/rest/resources/2023_07/image.rb +157 -0
  498. data/lib/shopify_api/rest/resources/2023_07/inventory_item.rb +108 -0
  499. data/lib/shopify_api/rest/resources/2023_07/inventory_level.rb +179 -0
  500. data/lib/shopify_api/rest/resources/2023_07/location.rb +167 -0
  501. data/lib/shopify_api/rest/resources/2023_07/locations_for_move.rb +56 -0
  502. data/lib/shopify_api/rest/resources/2023_07/marketing_event.rb +209 -0
  503. data/lib/shopify_api/rest/resources/2023_07/metafield.rb +344 -0
  504. data/lib/shopify_api/rest/resources/2023_07/mobile_platform_application.rb +110 -0
  505. data/lib/shopify_api/rest/resources/2023_07/order.rb +488 -0
  506. data/lib/shopify_api/rest/resources/2023_07/order_risk.rb +142 -0
  507. data/lib/shopify_api/rest/resources/2023_07/page.rb +194 -0
  508. data/lib/shopify_api/rest/resources/2023_07/payment.rb +140 -0
  509. data/lib/shopify_api/rest/resources/2023_07/payment_gateway.rb +143 -0
  510. data/lib/shopify_api/rest/resources/2023_07/payment_transaction.rb +107 -0
  511. data/lib/shopify_api/rest/resources/2023_07/payout.rb +97 -0
  512. data/lib/shopify_api/rest/resources/2023_07/policy.rb +69 -0
  513. data/lib/shopify_api/rest/resources/2023_07/price_rule.rb +223 -0
  514. data/lib/shopify_api/rest/resources/2023_07/product.rb +223 -0
  515. data/lib/shopify_api/rest/resources/2023_07/product_listing.rb +196 -0
  516. data/lib/shopify_api/rest/resources/2023_07/product_resource_feedback.rb +88 -0
  517. data/lib/shopify_api/rest/resources/2023_07/province.rb +132 -0
  518. data/lib/shopify_api/rest/resources/2023_07/recurring_application_charge.rb +172 -0
  519. data/lib/shopify_api/rest/resources/2023_07/redirect.rb +139 -0
  520. data/lib/shopify_api/rest/resources/2023_07/refund.rb +151 -0
  521. data/lib/shopify_api/rest/resources/2023_07/resource_feedback.rb +73 -0
  522. data/lib/shopify_api/rest/resources/2023_07/script_tag.rb +155 -0
  523. data/lib/shopify_api/rest/resources/2023_07/shipping_zone.rb +83 -0
  524. data/lib/shopify_api/rest/resources/2023_07/shop.rb +221 -0
  525. data/lib/shopify_api/rest/resources/2023_07/smart_collection.rb +216 -0
  526. data/lib/shopify_api/rest/resources/2023_07/storefront_access_token.rb +87 -0
  527. data/lib/shopify_api/rest/resources/2023_07/tender_transaction.rb +93 -0
  528. data/lib/shopify_api/rest/resources/2023_07/theme.rb +123 -0
  529. data/lib/shopify_api/rest/resources/2023_07/transaction.rb +184 -0
  530. data/lib/shopify_api/rest/resources/2023_07/usage_charge.rb +102 -0
  531. data/lib/shopify_api/rest/resources/2023_07/user.rb +138 -0
  532. data/lib/shopify_api/rest/resources/2023_07/variant.rb +212 -0
  533. data/lib/shopify_api/rest/resources/2023_07/webhook.rb +168 -0
  534. data/lib/shopify_api/utils/graphql_proxy.rb +49 -0
  535. data/lib/shopify_api/utils/hmac_validator.rb +44 -0
  536. data/lib/shopify_api/utils/http_utils.rb +17 -0
  537. data/lib/shopify_api/utils/session_utils.rb +68 -0
  538. data/lib/shopify_api/utils/verifiable_query.rb +18 -0
  539. data/lib/shopify_api/version.rb +3 -1
  540. data/lib/shopify_api/webhooks/handler.rb +15 -0
  541. data/lib/shopify_api/webhooks/register_result.rb +14 -0
  542. data/lib/shopify_api/webhooks/registration.rb +73 -0
  543. data/lib/shopify_api/webhooks/registrations/event_bridge.rb +61 -0
  544. data/lib/shopify_api/webhooks/registrations/http.rb +72 -0
  545. data/lib/shopify_api/webhooks/registrations/pub_sub.rb +65 -0
  546. data/lib/shopify_api/webhooks/registry.rb +215 -0
  547. data/lib/shopify_api/webhooks/request.rb +56 -0
  548. data/lib/shopify_api.rb +18 -40
  549. data/service.yml +0 -4
  550. data/shipit.rubygems.yml +1 -1
  551. data/shopify_api.gemspec +30 -23
  552. data/sorbet/config +3 -0
  553. data/sorbet/rbi/gems/activesupport@7.0.1.rbi +654 -0
  554. data/sorbet/rbi/gems/addressable@2.8.0.rbi +290 -0
  555. data/sorbet/rbi/gems/ast@2.4.2.rbi +54 -0
  556. data/sorbet/rbi/gems/coderay@1.1.3.rbi +8 -0
  557. data/sorbet/rbi/gems/concurrent-ruby@1.1.9.rbi +2401 -0
  558. data/sorbet/rbi/gems/crack@0.4.5.rbi +57 -0
  559. data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +185 -0
  560. data/sorbet/rbi/gems/fakefs@1.4.1.rbi +571 -0
  561. data/sorbet/rbi/gems/hash_diff@1.0.0.rbi +47 -0
  562. data/sorbet/rbi/gems/hashdiff@1.0.1.rbi +82 -0
  563. data/sorbet/rbi/gems/httparty@0.20.0.rbi +573 -0
  564. data/sorbet/rbi/gems/i18n@1.8.11.rbi +25 -0
  565. data/sorbet/rbi/gems/jwt@2.3.0.rbi +437 -0
  566. data/sorbet/rbi/gems/method_source@1.0.0.rbi +8 -0
  567. data/sorbet/rbi/gems/mime-types-data@3.2022.0105.rbi +73 -0
  568. data/sorbet/rbi/gems/mime-types@3.4.1.rbi +295 -0
  569. data/sorbet/rbi/gems/minitest@5.15.0.rbi +541 -0
  570. data/sorbet/rbi/gems/mocha@1.13.0.rbi +986 -0
  571. data/sorbet/rbi/gems/multi_xml@0.6.0.rbi +36 -0
  572. data/sorbet/rbi/gems/oj@3.13.11.rbi +274 -0
  573. data/sorbet/rbi/gems/openssl@3.0.0.rbi +581 -0
  574. data/sorbet/rbi/gems/parallel@1.21.0.rbi +113 -0
  575. data/sorbet/rbi/gems/parser@3.1.0.0.rbi +1741 -0
  576. data/sorbet/rbi/gems/pry@0.14.1.rbi +8 -0
  577. data/sorbet/rbi/gems/public_suffix@4.0.6.rbi +145 -0
  578. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +157 -0
  579. data/sorbet/rbi/gems/rake@13.0.6.rbi +814 -0
  580. data/sorbet/rbi/gems/rbi@0.0.11.rbi +1646 -0
  581. data/sorbet/rbi/gems/regexp_parser@2.2.0.rbi +1130 -0
  582. data/sorbet/rbi/gems/rexml@3.2.5.rbi +709 -0
  583. data/sorbet/rbi/gems/rubocop-ast@1.15.1.rbi +1921 -0
  584. data/sorbet/rbi/gems/rubocop-shopify@2.4.0.rbi +8 -0
  585. data/sorbet/rbi/gems/rubocop-sorbet@0.6.5.rbi +295 -0
  586. data/sorbet/rbi/gems/rubocop@1.25.1.rbi +13507 -0
  587. data/sorbet/rbi/gems/ruby-progressbar@1.11.0.rbi +405 -0
  588. data/sorbet/rbi/gems/securerandom@0.1.1.rbi +10 -0
  589. data/sorbet/rbi/gems/spoom@1.1.8.rbi +1252 -0
  590. data/sorbet/rbi/gems/tapioca@0.6.3.rbi +1238 -0
  591. data/sorbet/rbi/gems/thor@1.2.1.rbi +844 -0
  592. data/sorbet/rbi/gems/tzinfo@2.0.4.rbi +858 -0
  593. data/sorbet/rbi/gems/unicode-display_width@2.1.0.rbi +26 -0
  594. data/sorbet/rbi/gems/unparser@0.6.3.rbi +1816 -0
  595. data/sorbet/rbi/gems/webmock@3.14.0.rbi +683 -0
  596. data/sorbet/rbi/gems/webrick@1.7.0.rbi +601 -0
  597. data/sorbet/rbi/gems/yard-sorbet@0.6.1.rbi +199 -0
  598. data/sorbet/rbi/gems/yard@0.9.27.rbi +4145 -0
  599. data/sorbet/rbi/gems/zeitwerk@2.5.4.rbi +200 -0
  600. data/sorbet/rbi/shims/fakefs.rbi +1 -0
  601. data/sorbet/rbi/shims/openssl.rb +3 -0
  602. data/sorbet/rbi/todo.rbi +8 -0
  603. data/sorbet/tapioca/config.yml +4 -0
  604. data/sorbet/tapioca/require.rb +20 -0
  605. metadata +710 -360
  606. data/.document +0 -5
  607. data/.github/ISSUE_TEMPLATE.md +0 -36
  608. data/.github/probots.yml +0 -2
  609. data/.gitignore +0 -14
  610. data/.rubocop_todo.yml +0 -75
  611. data/CONTRIBUTORS +0 -3
  612. data/Gemfile_ar41 +0 -5
  613. data/Gemfile_ar50 +0 -5
  614. data/Gemfile_ar51 +0 -5
  615. data/Gemfile_ar60 +0 -5
  616. data/Gemfile_ar_main +0 -5
  617. data/RELEASING +0 -17
  618. data/docker-compose.yml +0 -13
  619. data/docs/_config.yml +0 -1
  620. data/docs/_includes/footer.html +0 -28
  621. data/docs/_includes/head.html +0 -28
  622. data/docs/_layouts/index.html +0 -57
  623. data/docs/graphql.md +0 -241
  624. data/docs/index.md +0 -639
  625. data/lib/active_resource/connection_ext.rb +0 -11
  626. data/lib/active_resource/detailed_log_subscriber.rb +0 -55
  627. data/lib/active_resource/json_errors.rb +0 -37
  628. data/lib/shopify_api/api_access.rb +0 -57
  629. data/lib/shopify_api/api_version.rb +0 -206
  630. data/lib/shopify_api/connection.rb +0 -36
  631. data/lib/shopify_api/countable.rb +0 -15
  632. data/lib/shopify_api/disable_prefix_check.rb +0 -31
  633. data/lib/shopify_api/events.rb +0 -8
  634. data/lib/shopify_api/graphql/http_client.rb +0 -22
  635. data/lib/shopify_api/graphql/railtie.rb +0 -17
  636. data/lib/shopify_api/graphql/task.rake +0 -100
  637. data/lib/shopify_api/graphql.rb +0 -103
  638. data/lib/shopify_api/hmac_params.rb +0 -33
  639. data/lib/shopify_api/limits.rb +0 -77
  640. data/lib/shopify_api/message_enricher.rb +0 -25
  641. data/lib/shopify_api/meta.rb +0 -14
  642. data/lib/shopify_api/metafields.rb +0 -21
  643. data/lib/shopify_api/paginated_collection.rb +0 -69
  644. data/lib/shopify_api/pagination_link_headers.rb +0 -34
  645. data/lib/shopify_api/resources/abandoned_checkout.rb +0 -7
  646. data/lib/shopify_api/resources/access_scope.rb +0 -10
  647. data/lib/shopify_api/resources/access_token.rb +0 -9
  648. data/lib/shopify_api/resources/address.rb +0 -5
  649. data/lib/shopify_api/resources/announcement.rb +0 -5
  650. data/lib/shopify_api/resources/api_permission.rb +0 -9
  651. data/lib/shopify_api/resources/application_charge.rb +0 -16
  652. data/lib/shopify_api/resources/application_credit.rb +0 -5
  653. data/lib/shopify_api/resources/array_base.rb +0 -13
  654. data/lib/shopify_api/resources/article.rb +0 -22
  655. data/lib/shopify_api/resources/asset.rb +0 -101
  656. data/lib/shopify_api/resources/assigned_fulfillment_order.rb +0 -16
  657. data/lib/shopify_api/resources/base.rb +0 -166
  658. data/lib/shopify_api/resources/billing_address.rb +0 -5
  659. data/lib/shopify_api/resources/blog.rb +0 -11
  660. data/lib/shopify_api/resources/carrier_service.rb +0 -5
  661. data/lib/shopify_api/resources/cart.rb +0 -5
  662. data/lib/shopify_api/resources/checkout.rb +0 -30
  663. data/lib/shopify_api/resources/collect.rb +0 -7
  664. data/lib/shopify_api/resources/collection.rb +0 -14
  665. data/lib/shopify_api/resources/collection_listing.rb +0 -19
  666. data/lib/shopify_api/resources/collection_publication.rb +0 -10
  667. data/lib/shopify_api/resources/comment.rb +0 -24
  668. data/lib/shopify_api/resources/country.rb +0 -5
  669. data/lib/shopify_api/resources/currency.rb +0 -6
  670. data/lib/shopify_api/resources/custom_collection.rb +0 -20
  671. data/lib/shopify_api/resources/customer.rb +0 -30
  672. data/lib/shopify_api/resources/customer_group.rb +0 -6
  673. data/lib/shopify_api/resources/customer_invite.rb +0 -5
  674. data/lib/shopify_api/resources/customer_saved_search.rb +0 -12
  675. data/lib/shopify_api/resources/discount_code.rb +0 -10
  676. data/lib/shopify_api/resources/discount_code_batch.rb +0 -34
  677. data/lib/shopify_api/resources/draft_order.rb +0 -15
  678. data/lib/shopify_api/resources/draft_order_invoice.rb +0 -5
  679. data/lib/shopify_api/resources/event.rb +0 -9
  680. data/lib/shopify_api/resources/fulfillment.rb +0 -56
  681. data/lib/shopify_api/resources/fulfillment_event.rb +0 -16
  682. data/lib/shopify_api/resources/fulfillment_order.rb +0 -151
  683. data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +0 -5
  684. data/lib/shopify_api/resources/fulfillment_request.rb +0 -16
  685. data/lib/shopify_api/resources/fulfillment_service.rb +0 -5
  686. data/lib/shopify_api/resources/fulfillment_v2.rb +0 -21
  687. data/lib/shopify_api/resources/gift_card.rb +0 -8
  688. data/lib/shopify_api/resources/image.rb +0 -17
  689. data/lib/shopify_api/resources/inventory_item.rb +0 -6
  690. data/lib/shopify_api/resources/inventory_level.rb +0 -54
  691. data/lib/shopify_api/resources/line_item.rb +0 -15
  692. data/lib/shopify_api/resources/location.rb +0 -8
  693. data/lib/shopify_api/resources/marketing_event.rb +0 -11
  694. data/lib/shopify_api/resources/metafield.rb +0 -14
  695. data/lib/shopify_api/resources/note_attribute.rb +0 -5
  696. data/lib/shopify_api/resources/option.rb +0 -5
  697. data/lib/shopify_api/resources/order.rb +0 -44
  698. data/lib/shopify_api/resources/order_risk.rb +0 -9
  699. data/lib/shopify_api/resources/page.rb +0 -7
  700. data/lib/shopify_api/resources/payment.rb +0 -7
  701. data/lib/shopify_api/resources/payment_details.rb +0 -5
  702. data/lib/shopify_api/resources/ping.rb +0 -3
  703. data/lib/shopify_api/resources/policy.rb +0 -8
  704. data/lib/shopify_api/resources/price_rule.rb +0 -8
  705. data/lib/shopify_api/resources/product.rb +0 -59
  706. data/lib/shopify_api/resources/product_listing.rb +0 -17
  707. data/lib/shopify_api/resources/product_publication.rb +0 -10
  708. data/lib/shopify_api/resources/province.rb +0 -6
  709. data/lib/shopify_api/resources/publication.rb +0 -5
  710. data/lib/shopify_api/resources/receipt.rb +0 -5
  711. data/lib/shopify_api/resources/recurring_application_charge.rb +0 -34
  712. data/lib/shopify_api/resources/redirect.rb +0 -5
  713. data/lib/shopify_api/resources/refund.rb +0 -15
  714. data/lib/shopify_api/resources/report.rb +0 -5
  715. data/lib/shopify_api/resources/resource_feedback.rb +0 -19
  716. data/lib/shopify_api/resources/rule.rb +0 -5
  717. data/lib/shopify_api/resources/script_tag.rb +0 -5
  718. data/lib/shopify_api/resources/shipping_address.rb +0 -5
  719. data/lib/shopify_api/resources/shipping_line.rb +0 -5
  720. data/lib/shopify_api/resources/shipping_rate.rb +0 -7
  721. data/lib/shopify_api/resources/shipping_zone.rb +0 -5
  722. data/lib/shopify_api/resources/shop.rb +0 -26
  723. data/lib/shopify_api/resources/smart_collection.rb +0 -15
  724. data/lib/shopify_api/resources/storefront_access_token.rb +0 -5
  725. data/lib/shopify_api/resources/tax_line.rb +0 -5
  726. data/lib/shopify_api/resources/tax_service.rb +0 -5
  727. data/lib/shopify_api/resources/tender_transaction.rb +0 -6
  728. data/lib/shopify_api/resources/theme.rb +0 -5
  729. data/lib/shopify_api/resources/transaction.rb +0 -6
  730. data/lib/shopify_api/resources/usage_charge.rb +0 -6
  731. data/lib/shopify_api/resources/user.rb +0 -5
  732. data/lib/shopify_api/resources/variant.rb +0 -43
  733. data/lib/shopify_api/resources/webhook.rb +0 -5
  734. data/lib/shopify_api/resources.rb +0 -4
  735. data/lib/shopify_api/session.rb +0 -203
  736. data/lib/verify_docs.rb +0 -8
  737. data/test/abandoned_checkouts_test.rb +0 -29
  738. data/test/access_scope_test.rb +0 -23
  739. data/test/access_token_test.rb +0 -20
  740. data/test/active_resource/json_errors_test.rb +0 -19
  741. data/test/api_access_test.rb +0 -153
  742. data/test/api_permission_test.rb +0 -9
  743. data/test/api_version_test.rb +0 -157
  744. data/test/application_charge_test.rb +0 -82
  745. data/test/application_credit_test.rb +0 -36
  746. data/test/article_test.rb +0 -72
  747. data/test/asset_test.rb +0 -26
  748. data/test/assigned_fulfillment_order_test.rb +0 -78
  749. data/test/base_test.rb +0 -213
  750. data/test/blog_test.rb +0 -9
  751. data/test/carrier_service_test.rb +0 -18
  752. data/test/cart_test.rb +0 -14
  753. data/test/checkouts_test.rb +0 -77
  754. data/test/collect_test.rb +0 -10
  755. data/test/collection_listing_test.rb +0 -84
  756. data/test/collection_publication_test.rb +0 -40
  757. data/test/collection_test.rb +0 -50
  758. data/test/countable_test.rb +0 -14
  759. data/test/currency_test.rb +0 -21
  760. data/test/custom_collection_test.rb +0 -10
  761. data/test/customer_saved_search_test.rb +0 -37
  762. data/test/customer_test.rb +0 -58
  763. data/test/detailed_log_subscriber_test.rb +0 -143
  764. data/test/discount_code_batch_test.rb +0 -41
  765. data/test/discount_code_test.rb +0 -59
  766. data/test/draft_order_test.rb +0 -167
  767. data/test/fixtures/abandoned_checkout.json +0 -184
  768. data/test/fixtures/abandoned_checkouts.json +0 -186
  769. data/test/fixtures/access_scopes.json +0 -10
  770. data/test/fixtures/access_token_delegate.json +0 -4
  771. data/test/fixtures/api_versions.json +0 -38
  772. data/test/fixtures/apis.json +0 -42
  773. data/test/fixtures/application_charge.json +0 -16
  774. data/test/fixtures/application_charges.json +0 -57
  775. data/test/fixtures/application_credit.json +0 -12
  776. data/test/fixtures/application_credits.json +0 -24
  777. data/test/fixtures/article.json +0 -15
  778. data/test/fixtures/articles.json +0 -39
  779. data/test/fixtures/asset.json +0 -9
  780. data/test/fixtures/assets.json +0 -136
  781. data/test/fixtures/assigned_fulfillment_orders.json +0 -80
  782. data/test/fixtures/authors.json +0 -1
  783. data/test/fixtures/blog.json +0 -13
  784. data/test/fixtures/blogs.json +0 -13
  785. data/test/fixtures/carrier_service.json +0 -9
  786. data/test/fixtures/carts.json +0 -43
  787. data/test/fixtures/checkout.json +0 -160
  788. data/test/fixtures/checkouts.json +0 -162
  789. data/test/fixtures/collect.json +0 -12
  790. data/test/fixtures/collection.json +0 -17
  791. data/test/fixtures/collection_listing.json +0 -11
  792. data/test/fixtures/collection_listing_product_ids.json +0 -1
  793. data/test/fixtures/collection_listing_product_ids2.json +0 -1
  794. data/test/fixtures/collection_listings.json +0 -13
  795. data/test/fixtures/collection_products.json +0 -47
  796. data/test/fixtures/collection_publication.json +0 -11
  797. data/test/fixtures/collection_publications.json +0 -13
  798. data/test/fixtures/currencies.json +0 -25
  799. data/test/fixtures/custom_collection.json +0 -17
  800. data/test/fixtures/customer_invite.json +0 -9
  801. data/test/fixtures/customer_saved_search.json +0 -9
  802. data/test/fixtures/customer_saved_search_customers.json +0 -60
  803. data/test/fixtures/customers.json +0 -59
  804. data/test/fixtures/customers_account_activation_url.json +0 -3
  805. data/test/fixtures/customers_search.json +0 -60
  806. data/test/fixtures/discount_code.json +0 -10
  807. data/test/fixtures/discount_code_batch.json +0 -14
  808. data/test/fixtures/discount_code_batch_discount_codes.json +0 -21
  809. data/test/fixtures/discount_codes.json +0 -12
  810. data/test/fixtures/draft_order.json +0 -159
  811. data/test/fixtures/draft_order_completed.json +0 -159
  812. data/test/fixtures/draft_order_invoice.json +0 -9
  813. data/test/fixtures/draft_orders.json +0 -161
  814. data/test/fixtures/engagement.json +0 -15
  815. data/test/fixtures/events.json +0 -31
  816. data/test/fixtures/fulfillment.json +0 -49
  817. data/test/fixtures/fulfillment_event.json +0 -12
  818. data/test/fixtures/fulfillment_order.json +0 -39
  819. data/test/fixtures/fulfillment_order_locations_for_move.json +0 -18
  820. data/test/fixtures/fulfillment_orders.json +0 -80
  821. data/test/fixtures/fulfillment_request.json +0 -28
  822. data/test/fixtures/fulfillment_service.json +0 -10
  823. data/test/fixtures/fulfillments.json +0 -53
  824. data/test/fixtures/gift_card.json +0 -20
  825. data/test/fixtures/gift_card_disabled.json +0 -20
  826. data/test/fixtures/graphql/2019-10.json +0 -1083
  827. data/test/fixtures/graphql/dummy_schema.rb +0 -16
  828. data/test/fixtures/graphql/unstable.json +0 -1083
  829. data/test/fixtures/image.json +0 -10
  830. data/test/fixtures/images.json +0 -20
  831. data/test/fixtures/inventory_level.json +0 -7
  832. data/test/fixtures/inventory_levels.json +0 -24
  833. data/test/fixtures/marketing_event.json +0 -28
  834. data/test/fixtures/marketing_events.json +0 -54
  835. data/test/fixtures/metafield.json +0 -12
  836. data/test/fixtures/metafields.json +0 -34
  837. data/test/fixtures/order.json +0 -297
  838. data/test/fixtures/order_risk.json +0 -14
  839. data/test/fixtures/order_risks.json +0 -28
  840. data/test/fixtures/order_with_properties.json +0 -373
  841. data/test/fixtures/orders.json +0 -299
  842. data/test/fixtures/payment.json +0 -7
  843. data/test/fixtures/payments.json +0 -9
  844. data/test/fixtures/ping/conversation.json +0 -1
  845. data/test/fixtures/ping/failed_delivery_confirmation.json +0 -1
  846. data/test/fixtures/ping/message.json +0 -1
  847. data/test/fixtures/ping/successful_delivery_confirmation.json +0 -1
  848. data/test/fixtures/policies.json +0 -8
  849. data/test/fixtures/price_rule.json +0 -27
  850. data/test/fixtures/price_rules.json +0 -28
  851. data/test/fixtures/product.json +0 -116
  852. data/test/fixtures/product_listing.json +0 -86
  853. data/test/fixtures/product_listing_product_ids.json +0 -1
  854. data/test/fixtures/product_listing_product_ids2.json +0 -1
  855. data/test/fixtures/product_listings.json +0 -174
  856. data/test/fixtures/product_publication.json +0 -11
  857. data/test/fixtures/product_publications.json +0 -13
  858. data/test/fixtures/publications.json +0 -9
  859. data/test/fixtures/recurring_application_charge.json +0 -22
  860. data/test/fixtures/recurring_application_charge_adjustment.json +0 -5
  861. data/test/fixtures/recurring_application_charges.json +0 -106
  862. data/test/fixtures/redirect.json +0 -7
  863. data/test/fixtures/refund.json +0 -112
  864. data/test/fixtures/report.json +0 -9
  865. data/test/fixtures/reports.json +0 -11
  866. data/test/fixtures/script_tag.json +0 -10
  867. data/test/fixtures/script_tags.json +0 -18
  868. data/test/fixtures/shipping_rates.json +0 -12
  869. data/test/fixtures/shipping_zones.json +0 -315
  870. data/test/fixtures/shop.json +0 -26
  871. data/test/fixtures/smart_collection.json +0 -21
  872. data/test/fixtures/smart_collection_products.json +0 -155
  873. data/test/fixtures/storefront_access_token.json +0 -9
  874. data/test/fixtures/storefront_access_tokens.json +0 -18
  875. data/test/fixtures/tags.json +0 -1
  876. data/test/fixtures/tax_service.json +0 -9
  877. data/test/fixtures/tender_transactions.json +0 -52
  878. data/test/fixtures/transaction.json +0 -29
  879. data/test/fixtures/usage_charge.json +0 -11
  880. data/test/fixtures/usage_charges.json +0 -23
  881. data/test/fixtures/user.json +0 -21
  882. data/test/fixtures/users.json +0 -42
  883. data/test/fixtures/variant.json +0 -23
  884. data/test/fixtures/variants.json +0 -88
  885. data/test/fixtures/webhook.json +0 -10
  886. data/test/fixtures/webhooks.json +0 -18
  887. data/test/fulfillment_event_test.rb +0 -74
  888. data/test/fulfillment_order_test.rb +0 -530
  889. data/test/fulfillment_order_test_helper.rb +0 -8
  890. data/test/fulfillment_request_test.rb +0 -35
  891. data/test/fulfillment_service_test.rb +0 -18
  892. data/test/fulfillment_test.rb +0 -239
  893. data/test/fulfillment_v2_test.rb +0 -66
  894. data/test/gift_card_test.rb +0 -24
  895. data/test/graphql/http_client_test.rb +0 -26
  896. data/test/graphql_test.rb +0 -190
  897. data/test/hmac_params_test.rb +0 -25
  898. data/test/image_test.rb +0 -41
  899. data/test/inventory_level_test.rb +0 -68
  900. data/test/lib/webmock_extensions/last_request.rb +0 -16
  901. data/test/limits_test.rb +0 -39
  902. data/test/location_test.rb +0 -15
  903. data/test/marketing_event_test.rb +0 -68
  904. data/test/message_enricher_test.rb +0 -45
  905. data/test/meta_test.rb +0 -47
  906. data/test/metafield_test.rb +0 -56
  907. data/test/order_risk_test.rb +0 -47
  908. data/test/order_test.rb +0 -140
  909. data/test/pagination_test.rb +0 -290
  910. data/test/payment_test.rb +0 -19
  911. data/test/policy_test.rb +0 -20
  912. data/test/price_rule_test.rb +0 -70
  913. data/test/product_listing_test.rb +0 -97
  914. data/test/product_publication_test.rb +0 -40
  915. data/test/product_test.rb +0 -111
  916. data/test/publication_test.rb +0 -12
  917. data/test/recurring_application_charge_test.rb +0 -204
  918. data/test/redirect_test.rb +0 -10
  919. data/test/refund_test.rb +0 -37
  920. data/test/report_test.rb +0 -37
  921. data/test/resource_feedback_test.rb +0 -43
  922. data/test/script_tag_test.rb +0 -31
  923. data/test/session_test.rb +0 -640
  924. data/test/shipping_rate_test.rb +0 -17
  925. data/test/shipping_zone_test.rb +0 -11
  926. data/test/shop_test.rb +0 -82
  927. data/test/smart_collection_test.rb +0 -11
  928. data/test/storefront_access_token_test.rb +0 -30
  929. data/test/tax_service_test.rb +0 -12
  930. data/test/tender_transaction_test.rb +0 -18
  931. data/test/test_helper.rb +0 -126
  932. data/test/transaction_test.rb +0 -18
  933. data/test/usage_charge_test.rb +0 -25
  934. data/test/user_test.rb +0 -18
  935. data/test/variant_test.rb +0 -73
  936. data/test/webhook_test.rb +0 -24
data/docs/index.md DELETED
@@ -1,639 +0,0 @@
1
- ---
2
- layout: index
3
- ---
4
-
5
- [![Version][gem]][gem_url] [![Build Status](https://github.com/Shopify/shopify_api/workflows/CI/badge.svg?branch=master)](https://github.com/Shopify/shopify_api/actions)
6
-
7
- [gem]: https://img.shields.io/gem/v/shopify_api.svg
8
- [gem_url]: https://rubygems.org/gems/shopify_api
9
-
10
- The Shopify API gem allows Ruby developers to access the admin section of Shopify stores programmatically.
11
-
12
- The best way to consume the Shopify API is through GraphQL, which enables high volume mutations, bulk operations, and access to all new features.
13
-
14
- The REST API is implemented as JSON over HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or Collection, has a distinct URL and is manipulated in isolation. In other words, we’ve tried to make the API follow the REST principles as much as possible.
15
-
16
- - [Shopify API](#shopify-api)
17
- - [Usage](#usage)
18
- * [Requirements](#requirements)
19
- + [Ruby version](#ruby-version)
20
- * [Installation](#installation)
21
- * [Getting Started](#getting-started)
22
- + [1) Create an app](#1-create-an-app)
23
- + [2A) Private Apps](#2a-private-apps)
24
- + [2B) Public and Custom Apps](#2b-public-and-custom-apps)
25
- + [3) Requesting access from a shop](#3-requesting-access-from-a-shop)
26
- + [4) Trading your `code` for an access token.](#4-trading-your--code--for-an-access-token)
27
- + [5) Activating the session](#5-activating-the-session)
28
- + [6A) Making requests to the GraphQL API](#6a-making-requests-to-the-graphql-api)
29
- + [6B) Making requests to the REST API](#6b-making-requests-to-the-rest-api)
30
- * [Console](#console)
31
- * [Thread safety](#thread-safety)
32
- * [Bulk Operations](#bulk-operations)
33
- + [Example](#example)
34
- - [1) Start the bulk operation](#1-start-the-bulk-operation)
35
- - [2) Poll the status of the bulk operation](#2-poll-the-status-of-the-bulk-operation)
36
- - [3) Retrieve your data](#3-retrieve-your-data)
37
- * [Pagination](#pagination)
38
- - [Breaking Change Notices](#breaking-change-notices)
39
- * [Breaking change notice for version 8.0.0](#breaking-change-notice-for-version-800)
40
- * [Breaking change notice for version 7.0.0](#breaking-change-notice-for-version-700)
41
- + [Changes to ShopifyAPI::Session](#changes-to-shopifyapi--session)
42
- + [Changes to how to define resources](#changes-to-how-to-define-resources)
43
- + [URL construction](#url-construction)
44
- + [URLs that have not changed](#urls-that-have-not-changed)
45
- - [Using Development Version](#using-development-version)
46
- - [Additional Resources](#additional-resources)
47
- - [Copyright](#copyright)
48
-
49
- # Usage
50
-
51
- ## Requirements
52
-
53
- All API usage happens through Shopify applications, created by either shop owners for their shops, or by Shopify Partners for use by other shop owners:
54
-
55
- * Shop owners can create applications for themselves through their admin: https://shopify.dev/tutorials/authenticate-a-private-app-with-shopify-admin#generate-private-app-credentials
56
- * Shopify Partners create applications through their admin: http://app.shopify.com/services/partners
57
-
58
- For more information and detailed documentation about the API visit https://developers.shopify.com/
59
-
60
- ### Ruby version
61
-
62
- This gem requires Ruby 2.4 as of version 7.0.
63
-
64
- ## Installation
65
-
66
- Add `shopify_api` to your `Gemfile`:
67
-
68
- ```ruby
69
- gem 'shopify_api'
70
- ```
71
-
72
- Or install via [gem](http://rubygems.org/)
73
-
74
- ```bash
75
- gem install shopify_api
76
- ```
77
-
78
- Once the gem is installed, it must be added to your project by placing the following line in your app :
79
-
80
- ```ruby
81
- require 'shopify_api'
82
- ```
83
-
84
- ## Getting Started
85
-
86
- ShopifyAPI sessions need to be configured with a fully authorized URL of a particular store before they can start making API calls. To obtain that URL, you can follow these steps:
87
-
88
- ### 1) Create an app
89
-
90
- First, create a new application in either the partners admin or your store admin.
91
-
92
- **Private apps** are used for merchant-owned scripts and apps that run silently in the background on a single shop. Private apps aren't able to render any content in the admin. Private apps are created through the store admin.
93
-
94
- **Custom apps** are also used for a single shop, but they have access to [app extensions](https://shopify.dev/docs/app-extensions) that allow the app to render content in the admin and are managed and created through the partners dashboard.
95
-
96
- **Public apps** can be installed on many stores, and can be added to the Shopify App Store to generate revenue for the developer.
97
-
98
- For a private app, you'll need the API_KEY and the PASSWORD; otherwise, you'll need the API_KEY and SHARED_SECRET.
99
-
100
- If you're not sure how to create a new application in the partner admin, visit the [tutorial in our documentation](https://shopify.dev/tutorials/authenticate-a-public-app-with-oauth#generate-credentials-from-your-partner-dashboard). For the instructions on generating a private app, visit the [tutorial on generating private credentials](https://shopify.dev/tutorials/authenticate-a-private-app-with-shopify-admin#generate-credentials-from-the-shopify-admin)
101
-
102
- ### 2A) Private Apps
103
-
104
- For a private App you just need to set the base site url as follows:
105
-
106
- ```ruby
107
- shop_url = "https://#{API_KEY}:#{PASSWORD}@#{SHOP_NAME}.myshopify.com"
108
- ShopifyAPI::Base.site = shop_url
109
- ShopifyAPI::Base.api_version = '<version_name>' # find the latest stable api_version here: https://shopify.dev/concepts/about-apis/versioning
110
- ```
111
-
112
- That's it; you're done! Next, skip to step 6 and start using the API!
113
-
114
- ### 2B) Public and Custom Apps
115
-
116
- For public and custom apps, you will need to supply two parameters to the Session class before you instantiate it:
117
-
118
- ```ruby
119
- ShopifyAPI::Session.setup(api_key: API_KEY, secret: SHARED_SECRET)
120
- ```
121
-
122
- Shopify maintains [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2), which simplifies and securely wraps the OAuth flow and interactions with Shopify. Using this gem is the recommended way to use OAuth authentication in your application.
123
-
124
- ### 3) Requesting access from a shop
125
-
126
- Public and Custom apps need an access token from each shop to access that shop's data. Getting an access token is a two-stage process. The first stage is to redirect the merchant to a **permission URL** to grant access to the app.
127
-
128
- We've added the `create_permission_url` method to make this easier :
129
-
130
- ```ruby
131
- # We need to instantiate the session object before using it
132
- shopify_session = ShopifyAPI::Session.new(domain: "SHOP_NAME.myshopify.com", api_version: api_version, token: nil)
133
-
134
- # Then, create a permission URL with the session
135
- permission_url = shopify_session.create_permission_url(scope, "https://my_redirect_uri.com", { state: "My Nonce" })
136
- ```
137
-
138
- After creating the permission URL, the user should be directed to this URL to approve the app.
139
-
140
- Under the hood, the `create_permission_url` method is preparing the app to make the following request :
141
-
142
- ```
143
- GET https://SHOP_NAME.myshopify.com/admin/oauth/authorize
144
- ```
145
-
146
- with the following parameters:
147
-
148
- * ``client_id`` – Required – The API key for your app
149
- * ``scope`` – Required – The list of required scopes (explained here: https://shopify.dev/tutorials/authenticate-with-oauth#scopes)
150
- * ``redirect_uri`` – Required – The URL where you want to redirect the users after they authorize the client. The complete URL specified here must be identical to one of the Application Redirect URLs set in the app's section of the Partners dashboard.
151
- * ``state`` – Optional – A randomly selected value provided by your application, which is unique for each authorization request. During the OAuth callback phase, your application must check that this value matches the one you provided during authorization. [This mechanism is essential for the security of your application](https://tools.ietf.org/html/rfc6819#section-3.6).
152
- * ``grant_options[]`` - Optional - Set this parameter to `per-user` to receive an access token that respects the user's permission level when making API requests (called online access). We strongly recommend using this parameter for embedded apps.
153
-
154
- ### 4) Trading your `code` for an access token.
155
-
156
- Once authorized, the shop redirects the owner to the return URL of your application with a parameter named `code`. The value of this parameter is a temporary token that the app can exchange for a permanent access token.
157
-
158
- Before you proceed, make sure your application performs the following security checks. If any of the checks fail, your application must reject the request with an error, and must not proceed further.
159
-
160
- 1) Ensure the provided ``state`` is the same one that your application provided to Shopify in the previous step.
161
- 2) Ensure the provided hmac is valid. The hmac is signed by Shopify, as explained below in the Verification section.
162
- 3) Ensure the provided hostname parameter is a valid hostname, ends with myshopify.com, and does not contain characters other than letters (a-z), numbers (0-9), dots, and hyphens.
163
-
164
- If all security checks pass, the authorization code can be exchanged once for a permanent access token. There is a method to make the request and get the token for you. Pass all the params received from the previous call and the method will verify the params, extract the temp code and then request your token:
165
-
166
- ```ruby
167
- token = shopify_session.request_token(params)
168
- ```
169
-
170
- This method will save the token to the session object and return it. All fields returned by Shopify, other than the access token itself, are stored in the session's `extra` attribute. For a list of all fields returned by Shopify, read [our OAuth documentation](https://shopify.dev/tutorials/authenticate-with-oauth#confirming-installation).
171
-
172
- If you prefer to exchange the token manually, you can make a POST request to the shop with the following parameters :
173
-
174
- ```
175
- POST https://SHOP_NAME.myshopify.com/admin/oauth/access_token
176
- ```
177
-
178
- * ``client_id`` – Required – The API key for your app
179
- * ``client_secret`` – Required – The shared secret for your app
180
- * ``code`` – Required – The token you received in step 3
181
-
182
- You'll get your permanent access token back in the response.
183
-
184
- If you requested an access token that is associated with a specific user, you can retrieve information about this user from the `extra` hash:
185
-
186
- ```ruby
187
- # a list of all granted scopes
188
- granted_scopes = shopify_session.extra['scope']
189
- # a hash containing the user information
190
- user = shopify_session.extra['associated_user']
191
- # the access scopes available to this user, which may be a subset of the access scopes granted to this app.
192
- active_scopes = shopify_session.extra['associated_user_scope']
193
- # the time at which this token expires; this is automatically converted from 'expires_in' returned by Shopify
194
- expires_at = shopify_session.extra['expires_at']
195
- ```
196
-
197
- For the security of your application, after retrieving an access token, you must validate the following:
198
- 1) The list of scopes in `shopify_session.extra['scope']` is the same as you requested.
199
- 2) If you requested an online-mode access token, `shopify_session.extra['associated_user']` must be present.
200
- Failing either of these tests means the end-user may have tampered with the URL parameters during the OAuth authentication phase. You should avoid using this access token and revoke it immediately. If you use the [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2) gem, these checks are done automatically for you.
201
-
202
- ### 5) Activating the session
203
-
204
- Once you have a token, simply pass in the `token` and `extra` hash (optional) when creating the session object:
205
-
206
- ```ruby
207
- shopify_session = ShopifyAPI::Session.new(domain: "SHOP_NAME.myshopify.com", token: token, api_version: api_version, extra: extra)
208
- ```
209
-
210
- The session must be activated before use:
211
-
212
- ```ruby
213
- ShopifyAPI::Base.activate_session(shopify_session)
214
- ```
215
-
216
- ### 6A) Making requests to the GraphQL API
217
-
218
- The GraphQL API is the recommended way to consume the Shopify API. It is more fully-featured than REST, more performant, and future-proof. Whenever possible, GraphQL should be used to consume the Shopify API.
219
-
220
- ###### Note: the GraphQL client has improved and changed in version 9.0. See the [client documentation](docs/graphql.md) for full usage details and a [migration guide](docs/graphql.md#migration-guide).
221
-
222
- This library also supports Shopify's [GraphQL Admin API](https://shopify.dev/docs/admin-api/graphql/reference)
223
- via integration with the [graphql-client](https://github.com/github/graphql-client) gem.
224
- The authentication process (steps 1-5 under [Getting Started](#getting-started))
225
- is identical. Once your session is activated, simply access the GraphQL client
226
- and use `parse` and `query` as defined by
227
- [graphql-client](https://github.com/github/graphql-client#defining-queries).
228
-
229
- ```ruby
230
- client = ShopifyAPI::GraphQL.client
231
-
232
- SHOP_NAME_QUERY = client.parse <<-'GRAPHQL'
233
- {
234
- shop {
235
- name
236
- }
237
- }
238
- GRAPHQL
239
-
240
- result = client.query(SHOP_NAME_QUERY)
241
- result.data.shop.name
242
- ```
243
-
244
- [GraphQL client documentation](docs/graphql.md)
245
-
246
- ### 6B) Making requests to the REST API
247
-
248
- Responses to REST requests are returned as ActiveResource instances:
249
-
250
- ```ruby
251
- shop = ShopifyAPI::Shop.current
252
-
253
- # Get a specific product
254
- product = ShopifyAPI::Product.find(179761209)
255
-
256
- # Create a new product
257
- new_product = ShopifyAPI::Product.new
258
- new_product.title = "Burton Custom Freestlye 151"
259
- new_product.product_type = "Snowboard"
260
- new_product.vendor = "Burton"
261
- new_product.save
262
-
263
- # Update a product
264
- product.handle = "burton-snowboard"
265
- product.save
266
- ```
267
-
268
- Alternatively, you can use #temp to initialize a Session and execute a command which also handles temporarily setting ActiveResource::Base.site:
269
-
270
- ```ruby
271
- products = ShopifyAPI::Session.temp(domain: "SHOP_NAME.myshopify.com", token: token, api_version: api_version) do
272
- ShopifyAPI::Product.find(:all)
273
- end
274
- ```
275
-
276
- If you would like to run a small number of calls against a different API version you can use this block syntax:
277
-
278
- ```ruby
279
- ShopifyAPI::Session.temp(domain: "SHOP_NAME.myshopify.com", token: token, api_version: '2019-04') do
280
- ShopifyAPI::Product.find(:all) # find call against version `2019-04`
281
-
282
- ShopifyAPI::Session.with_version(:unstable) do
283
- ShopifyAPI::Product.find(:all) # find call against version `unstable`
284
- end
285
-
286
- ShopifyAPI::Product.find(:all) # find call against version `2019-04`
287
- end
288
- ```
289
-
290
- If you want to work with another shop, you'll first need to clear the session:
291
-
292
- ```ruby
293
- ShopifyAPI::Base.clear_session
294
- ```
295
-
296
- ## Console
297
-
298
- This package also supports the ``shopify-api`` executable to make it easy to open up an interactive console to use the API with a shop.
299
-
300
- 1. Install the ``shopify_api_console`` gem.
301
-
302
- ```bash
303
- gem install shopify_api_console
304
- ```
305
-
306
- 2. Obtain a private API key and password to use with your shop (step 2A in "Getting Started")
307
-
308
- 3. Use the ``shopify-api`` script to save the credentials for the shop to quickly login.
309
-
310
- ```bash
311
- shopify-api add yourshopname
312
- ```
313
-
314
- Follow the prompts for the shop domain, API key and password.
315
-
316
- 4. Start the console for the connection.
317
-
318
- ```bash
319
- shopify-api console
320
- ```
321
-
322
- 5. To see the full list of commands, type:
323
-
324
- ```bash
325
- shopify-api help
326
- ```
327
-
328
- ## Thread safety
329
-
330
- ActiveResource is threadsafe as of version 4.1 (which works with Rails 4.x and above).
331
-
332
- If you were previously using Shopify's [activeresource fork](https://github.com/shopify/activeresource), then you should remove it and use ActiveResource 4.1.
333
-
334
- ## Bulk Operations
335
-
336
- With the GraphQL Admin API, you can use bulk operations to asynchronously fetch data in bulk. The API is designed to reduce complexity and improve performance when dealing with large volumes of data.
337
-
338
- Instead of manually paginating results and managing a client-side throttle, you can instead run a bulk query operation. Shopify’s infrastructure does the hard work of executing your query, and then provides you with a URL where you can download all of the data.
339
-
340
- Apps are limited to running a single bulk operation at a time per shop. When the operation is complete, the results are delivered in the form of a JSONL file that Shopify makes available at a URL.
341
-
342
- ### Example
343
-
344
- The following mutation queries the products connection and returns each product's ID and title.
345
-
346
- #### 1) Start the bulk operation
347
-
348
- ```ruby
349
- client = ShopifyAPI::GraphQL.client
350
-
351
- PRODUCTS_BULK_QUERY = client.parse <<-'GRAPHQL'
352
- mutation {
353
- bulkOperationRunQuery(
354
- query: """
355
- {
356
- products {
357
- edges {
358
- node {
359
- id
360
- title
361
- }
362
- }
363
- }
364
- }
365
- """
366
- ) {
367
- bulkOperation {
368
- id
369
- status
370
- }
371
- userErrors {
372
- field
373
- message
374
- }
375
- }
376
- }
377
- GRAPHQL
378
-
379
- result = client.query(PRODUCTS_BULK_QUERY)
380
- ```
381
- #### Step 2) Poll the status of the bulk operation
382
-
383
- While the operation is running, you need to poll to see its progress using the `currentBulkOperation` field. The `objectCount` field increments to indicate the operation's progress, and the `status` field returns whether the operation is completed.
384
-
385
- ```ruby
386
- BULK_POLL_QUERY = client.parse <<-'GRAPHQL'
387
- query {
388
- currentBulkOperation {
389
- id
390
- status
391
- errorCode
392
- createdAt
393
- completedAt
394
- objectCount
395
- fileSize
396
- url
397
- partialDataUrl
398
- }
399
- }
400
- GRAPHQL
401
-
402
- result = client.query(BULK_POLL_QUERY)
403
- ```
404
-
405
- The JSON response of a completed query will look like this :
406
-
407
- ```json
408
- {
409
- "data": {
410
- "currentBulkOperation": {
411
- "id": "gid:\/\/shopify\/BulkOperation\/720918",
412
- "status": "COMPLETED",
413
- "errorCode": null,
414
- "createdAt": "2019-08-29T17:16:35Z",
415
- "completedAt": "2019-08-29T17:23:25Z",
416
- "objectCount": "57",
417
- "fileSize": "358",
418
- "url": "https:\/\/storage.googleapis.com\/shopify\/dyfkl3g72empyyoenvmtidlm9o4g?<params>",
419
- "partialDataUrl": null
420
- }
421
- },
422
- ...
423
- }
424
- ```
425
-
426
- #### Step 3) Retrieve your data
427
-
428
- Since bulk operations are specifically designed to fetch large datasets, we’ve chosen the [JSON Lines](http://jsonlines.org/) (JSONL) format for the response data so that clients have more flexibility in how they consume the data. JSONL is similar to JSON, but each line is a valid JSON object. The file can be parsed one line at a time by using file streaming functionality to avoid issues with memory consumption.
429
-
430
- A JSONL output file is available for download at the URL specified in the `url` field when the operation completes.
431
-
432
- Each line in the file is a node object returned in a connection. If a node has a nested connection, then each child node is extracted into a new object on the next line. Below is an example of a JSONL file.
433
-
434
- ```json
435
- {"id":"gid://shopify/Product/1921569226808"}
436
- {"id":"gid://shopify/ProductVariant/19435458986040","title":"70","__parentId":"gid://shopify/Product/1921569226808"}
437
- {"id":"gid://shopify/Product/1921569259576"}
438
- {"id":"gid://shopify/ProductVariant/19435459018808","title":"34","__parentId":"gid://shopify/Product/1921569259576"}
439
- {"id":"gid://shopify/Product/1921569292344"}
440
- {"id":"gid://shopify/ProductVariant/19435459051576","title":"Default Title","__parentId":"gid://shopify/Product/1921569292344"}
441
- {"id":"gid://shopify/Product/1921569325112"}
442
- {"id":"gid://shopify/ProductVariant/19435459084344","title":"36","__parentId":"gid://shopify/Product/1921569325112"}
443
- {"id":"gid://shopify/Product/1921569357880"}
444
- {"id":"gid://shopify/ProductVariant/19435459117112","title":"47","__parentId":"gid://shopify/Product/1921569357880"}
445
- {"id":"gid://shopify/ProductVariant/19435458986123","title":"52","__parentId":"gid://shopify/Product/1921569226808"}
446
- ```
447
-
448
- Here's a simple example in Ruby to demonstrate the proper way of loading and parsing a JSONL file:
449
-
450
- ```ruby
451
- # Efficient: reads the file a single line at a time
452
- File.open(file) do |f|
453
- f.each do |line|
454
- JSON.parse(line)
455
- end
456
- end
457
-
458
- # Inefficient: reads the entire file into memory
459
- jsonl = File.read(file)
460
-
461
- jsonl.each_line do |line|
462
- JSON.parse(line)
463
- end
464
- ```
465
-
466
- ## Pagination
467
-
468
- Shopify uses [Relative cursor-based pagination](https://shopify.dev/tutorials/make-paginated-requests-to-rest-admin-api) to provide more than a single page of results.
469
-
470
- ```ruby
471
- products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
472
- process_products(products)
473
- while products.next_page?
474
- products = products.fetch_next_page
475
- process_products(products)
476
- end
477
- ```
478
-
479
- If you want cursor-based pagination to work across page loads, or wish to distribute workload across multiple background jobs, you can use #next_page_info or #previous_page_info methods that return strings:
480
-
481
- ```
482
- first_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
483
- second_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50, page_info: first_batch_products.next_page_info })
484
- ...
485
- ```
486
-
487
- Relative cursor pagination is currently available for all endpoints using the `2019-10` and later API versions.
488
-
489
- Apps using older versions of the API may have used page-based pagination (deprecated starting in 2019-10) :
490
-
491
- ```ruby
492
- page = 1
493
- products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
494
- process_products(products)
495
- while(products.count == 50)
496
- page += 1
497
- products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
498
- process_products(products)
499
- end
500
- ```
501
-
502
- # Breaking Change Notices
503
-
504
- ## Breaking change notice for version 8.0.0
505
-
506
- Version 7.0.0 introduced ApiVersion, and known versions were hardcoded into the gem. Manually defining API versions is no longer required for versions not listed in the gem. Version 8.0.0 removes the following:
507
- * `ShopifyAPI::ApiVersion::Unstable`
508
- * `ShopifyAPI::ApiVersion::Release`
509
- * `ShopifyAPI::ApiVersion.define_version`
510
-
511
- The following methods on `ApiVersion` have been deprecated:
512
- - `.coerce_to_version` deprecated. use `.find_version`
513
- - `.define_known_versions` deprecated. Use `.fetch_known_versions`
514
- - `.clear_defined_versions` deprecated. Use. `.clear_known_versions`
515
- - `.latest_stable_version` deprecated. Use `ShopifyAPI::Meta.admin_versions.find(&:latest_supported)` (this fetches info from Shopify servers. No authentication required.)
516
- - `#name` deprecated. Use `#handle`
517
- - `#stable?` deprecated. Use `#supported?`
518
-
519
- Version 8.0.0 introduces a _version lookup mode_. By default, `ShopifyAPI::ApiVersion.version_lookup_mode` is `:define_on_unknown`. When setting the api_version on `Session` or `Base`, the `api_version` attribute takes a version handle (i.e. `'2019-07'` or `:unstable`) and sets an instance of `ShopifyAPI::ApiVersion` matching the handle. When the version_lookup_mode is set to `:define_on_unknown`, any handle will naïvely create a new `ApiVersion` if the version is not in the known versions returned by `ShopifyAPI::ApiVersion.versions`.
520
-
521
- To ensure you're setting only known and active versions, call :
522
-
523
- ```ruby
524
- ShopifyAPI::ApiVersion.version_lookup_mode = :raise_on_unknown
525
- ShopifyAPI::ApiVersion.fetch_known_versions
526
- ```
527
-
528
- Known and active versions are fetched from https://app.shopify.com/services/apis.json and cached. Trying to use a version outside this cached set will raise an error. To switch back to naïve lookup and create a version if one is not found, call `ShopifyAPI::ApiVersion.version_lookup_mode = :define_on_unknown`.
529
-
530
-
531
- ## Breaking change notice for version 7.0.0
532
-
533
- ### Changes to ShopifyAPI::Session
534
- When creating sessions, `api_version`is now required and uses keyword arguments.
535
-
536
- To upgrade your use of ShopifyAPI you will need to make the following changes.
537
-
538
- ```ruby
539
- ShopifyAPI::Session.new(domain, token, extras)
540
- ```
541
- is now
542
- ```ruby
543
- ShopifyAPI::Session.new(domain: domain, token: token, api_version: api_version, extras: extras)
544
- ```
545
- Note `extras` is still optional. The other arguments are required.
546
-
547
- ```ruby
548
- ShopifyAPI::Session.temp(domain, token, extras) do
549
- ...
550
- end
551
- ```
552
- is now
553
- ```ruby
554
- ShopifyAPI::Session.temp(domain: domain, token: token, api_version: api_version) do
555
- ...
556
- end
557
- ```
558
-
559
- For example, if you want to use the `2019-04` version, you will create a session like this:
560
- ```ruby
561
- session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: '2019-04')
562
- ```
563
- if you want to use the `unstable` version, you will create a session like this:
564
- ```ruby
565
- session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: :unstable)
566
- ```
567
-
568
- ### Changes to how to define resources
569
-
570
- If you have defined or customized Resources, classes that extend `ShopifyAPI::Base`:
571
- The use of `self.prefix =` has been deprecated; you should now use `self.resource =` and not include `/admin`.
572
- For example, if you specified a prefix like this before:
573
- ```ruby
574
- class MyResource < ShopifyAPI::Base
575
- self.prefix = '/admin/shop/'
576
- end
577
- ```
578
- You will update this to:
579
- ```ruby
580
- class MyResource < ShopifyAPI::Base
581
- self.resource_prefix = 'shop/'
582
- end
583
- ```
584
-
585
- ### URL construction
586
-
587
- If you have specified any full paths for API calls in find
588
- ```ruby
589
- def self.current(options={})
590
- find(:one, options.merge(from: "/admin/shop.#{format.extension}"))
591
- end
592
- ```
593
- would be changed to
594
-
595
- ```ruby
596
- def self.current(options = {})
597
- find(:one, options.merge(
598
- from: api_version.construct_api_path("shop.#{format.extension}")
599
- ))
600
- end
601
- ```
602
-
603
- ### URLs that have not changed
604
-
605
- - OAuth URLs for `authorize`, getting the `access_token` from a code, `access_scopes`, and using a `refresh_token` have _not_ changed.
606
- - get: `/admin/oauth/authorize`
607
- - post: `/admin/oauth/access_token`
608
- - get: `/admin/oauth/access_scopes`
609
- - URLs for the merchant’s web admin have _not_ changed. For example: to send the merchant to the product page the url is still `/admin/product/<id>`
610
-
611
- # Using Development Version
612
-
613
- Download the source code and run:
614
-
615
- ```bash
616
- bundle install
617
- bundle exec rake test
618
- ```
619
-
620
- or if you'd rather use docker just run:
621
- ```bash
622
- docker run -it --name shopify_api -v "$PWD:/shopify_api" -w="/shopify_api" ruby:2.6 bundle install
623
- docker exec -it shopify_api bash
624
- ```
625
-
626
- or you can even use our automated rake task for docker:
627
- ```bash
628
- bundle exec rake docker
629
- ```
630
-
631
- # Additional Resources
632
-
633
- * [GraphQL API Reference](https://shopify.dev/docs/admin-api/graphql/reference)
634
- * [REST API Reference](https://shopify.dev/docs/admin-api/rest/reference)
635
- * [Ask questions on the forums](https://community.shopify.com/c/Shopify-Community/ct-p/en?profile.language=en)
636
-
637
- # Copyright
638
-
639
- Copyright (c) 2014 "Shopify Inc.". See LICENSE for details.
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'shopify_api/connection'
3
-
4
- module ActiveResource
5
- class Connection
6
- attr_reader :response
7
-
8
- prepend ShopifyAPI::Connection::ResponseCapture
9
- prepend ShopifyAPI::Connection::RequestNotification
10
- end
11
- end