shopify_api 4.12.0 → 12.4.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 (770) hide show
  1. checksums.yaml +5 -5
  2. data/.github/CODEOWNERS +1 -0
  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/dependabot.yml +20 -0
  7. data/.github/pull_request_template.md +20 -0
  8. data/.github/workflows/build.yml +39 -0
  9. data/.github/workflows/cla.yml +22 -0
  10. data/.github/workflows/close-waiting-for-response-issues.yml +20 -0
  11. data/.github/workflows/remove-labels-on-activity.yml +16 -0
  12. data/.github/workflows/stale.yml +33 -0
  13. data/.rubocop.yml +56 -5
  14. data/BREAKING_CHANGES_FOR_OLDER_VERSIONS.md +110 -0
  15. data/CHANGELOG.md +581 -0
  16. data/CONTRIBUTING.md +4 -3
  17. data/Gemfile +9 -2
  18. data/Gemfile.lock +159 -0
  19. data/LICENSE +2 -2
  20. data/README.md +85 -218
  21. data/RELEASING.md +19 -0
  22. data/Rakefile +16 -32
  23. data/SECURITY.md +59 -0
  24. data/bin/tapioca +29 -0
  25. data/dev.yml +32 -0
  26. data/docs/README.md +13 -0
  27. data/docs/getting_started.md +53 -0
  28. data/docs/issues.md +39 -0
  29. data/docs/usage/graphql.md +115 -0
  30. data/docs/usage/graphql_storefront.md +42 -0
  31. data/docs/usage/oauth.md +104 -0
  32. data/docs/usage/rest.md +137 -0
  33. data/docs/usage/session_storage.md +46 -0
  34. data/docs/usage/webhooks.md +98 -0
  35. data/lib/shopify_api/admin_versions.rb +20 -0
  36. data/lib/shopify_api/auth/associated_user.rb +36 -0
  37. data/lib/shopify_api/auth/auth_scopes.rb +75 -0
  38. data/lib/shopify_api/auth/file_session_storage.rb +72 -0
  39. data/lib/shopify_api/auth/jwt_payload.rb +83 -0
  40. data/lib/shopify_api/auth/oauth/auth_query.rb +47 -0
  41. data/lib/shopify_api/auth/oauth/session_cookie.rb +28 -0
  42. data/lib/shopify_api/auth/oauth.rb +135 -0
  43. data/lib/shopify_api/auth/session.rb +119 -0
  44. data/lib/shopify_api/auth/session_storage.rb +30 -0
  45. data/lib/shopify_api/auth.rb +26 -0
  46. data/lib/shopify_api/clients/graphql/admin.rb +15 -0
  47. data/lib/shopify_api/clients/graphql/client.rb +40 -0
  48. data/lib/shopify_api/clients/graphql/storefront.rb +35 -0
  49. data/lib/shopify_api/clients/http_client.rb +100 -0
  50. data/lib/shopify_api/clients/http_request.rb +35 -0
  51. data/lib/shopify_api/clients/http_response.rb +66 -0
  52. data/lib/shopify_api/clients/rest/admin.rb +118 -0
  53. data/lib/shopify_api/context.rb +196 -0
  54. data/lib/shopify_api/errors/context_not_setup_error.rb +9 -0
  55. data/lib/shopify_api/errors/cookie_not_found_error.rb +9 -0
  56. data/lib/shopify_api/errors/feature_deprecated_error.rb +9 -0
  57. data/lib/shopify_api/errors/http_response_error.rb +23 -0
  58. data/lib/shopify_api/errors/invalid_graphql_request_error.rb +9 -0
  59. data/lib/shopify_api/errors/invalid_http_request_error.rb +9 -0
  60. data/lib/shopify_api/errors/invalid_jwt_token_error.rb +9 -0
  61. data/lib/shopify_api/errors/invalid_oauth_error.rb +9 -0
  62. data/lib/shopify_api/errors/invalid_webhook_error.rb +9 -0
  63. data/lib/shopify_api/errors/invalid_webhook_registration_error.rb +9 -0
  64. data/lib/shopify_api/errors/log_level_not_found_error.rb +9 -0
  65. data/lib/shopify_api/errors/max_http_retries_exceeded_error.rb +9 -0
  66. data/lib/shopify_api/errors/missing_jwt_token_error.rb +9 -0
  67. data/lib/shopify_api/errors/missing_required_argument_error.rb +9 -0
  68. data/lib/shopify_api/errors/no_active_session_error.rb +9 -0
  69. data/lib/shopify_api/errors/no_session_cookie_error.rb +9 -0
  70. data/lib/shopify_api/errors/no_webhook_handler.rb +9 -0
  71. data/lib/shopify_api/errors/private_app_error.rb +9 -0
  72. data/lib/shopify_api/errors/request_access_token_error.rb +9 -0
  73. data/lib/shopify_api/errors/session_not_found_error.rb +9 -0
  74. data/lib/shopify_api/errors/session_storage_error.rb +9 -0
  75. data/lib/shopify_api/errors/unsupported_oauth_error.rb +9 -0
  76. data/lib/shopify_api/errors/unsupported_version_error.rb +9 -0
  77. data/lib/shopify_api/errors/webhook_registration_error.rb +9 -0
  78. data/lib/shopify_api/inflector.rb +17 -0
  79. data/lib/shopify_api/logger.rb +82 -0
  80. data/lib/shopify_api/rest/base.rb +394 -0
  81. data/lib/shopify_api/rest/base_errors.rb +32 -0
  82. data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +190 -0
  83. data/lib/shopify_api/rest/resources/2022_01/access_scope.rb +58 -0
  84. data/lib/shopify_api/rest/resources/2022_01/android_pay_key.rb +77 -0
  85. data/lib/shopify_api/rest/resources/2022_01/apple_pay_certificate.rb +105 -0
  86. data/lib/shopify_api/rest/resources/2022_01/application_charge.rb +104 -0
  87. data/lib/shopify_api/rest/resources/2022_01/application_credit.rb +87 -0
  88. data/lib/shopify_api/rest/resources/2022_01/article.rb +265 -0
  89. data/lib/shopify_api/rest/resources/2022_01/asset.rb +118 -0
  90. data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +86 -0
  91. data/lib/shopify_api/rest/resources/2022_01/balance.rb +50 -0
  92. data/lib/shopify_api/rest/resources/2022_01/blog.rb +162 -0
  93. data/lib/shopify_api/rest/resources/2022_01/cancellation_request.rb +83 -0
  94. data/lib/shopify_api/rest/resources/2022_01/carrier_service.rb +116 -0
  95. data/lib/shopify_api/rest/resources/2022_01/checkout.rb +209 -0
  96. data/lib/shopify_api/rest/resources/2022_01/collect.rb +142 -0
  97. data/lib/shopify_api/rest/resources/2022_01/collection.rb +110 -0
  98. data/lib/shopify_api/rest/resources/2022_01/collection_listing.rb +155 -0
  99. data/lib/shopify_api/rest/resources/2022_01/comment.rb +283 -0
  100. data/lib/shopify_api/rest/resources/2022_01/country.rb +137 -0
  101. data/lib/shopify_api/rest/resources/2022_01/currency.rb +57 -0
  102. data/lib/shopify_api/rest/resources/2022_01/custom_collection.rb +187 -0
  103. data/lib/shopify_api/rest/resources/2022_01/customer.rb +326 -0
  104. data/lib/shopify_api/rest/resources/2022_01/customer_address.rb +201 -0
  105. data/lib/shopify_api/rest/resources/2022_01/customer_saved_search.rb +169 -0
  106. data/lib/shopify_api/rest/resources/2022_01/deprecated_api_call.rb +57 -0
  107. data/lib/shopify_api/rest/resources/2022_01/discount_code.rb +219 -0
  108. data/lib/shopify_api/rest/resources/2022_01/dispute.rb +111 -0
  109. data/lib/shopify_api/rest/resources/2022_01/draft_order.rb +275 -0
  110. data/lib/shopify_api/rest/resources/2022_01/event.rb +148 -0
  111. data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +272 -0
  112. data/lib/shopify_api/rest/resources/2022_01/fulfillment_event.rb +166 -0
  113. data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +281 -0
  114. data/lib/shopify_api/rest/resources/2022_01/fulfillment_request.rb +87 -0
  115. data/lib/shopify_api/rest/resources/2022_01/fulfillment_service.rb +130 -0
  116. data/lib/shopify_api/rest/resources/2022_01/gift_card.rb +215 -0
  117. data/lib/shopify_api/rest/resources/2022_01/gift_card_adjustment.rb +118 -0
  118. data/lib/shopify_api/rest/resources/2022_01/image.rb +157 -0
  119. data/lib/shopify_api/rest/resources/2022_01/inventory_item.rb +108 -0
  120. data/lib/shopify_api/rest/resources/2022_01/inventory_level.rb +179 -0
  121. data/lib/shopify_api/rest/resources/2022_01/location.rb +167 -0
  122. data/lib/shopify_api/rest/resources/2022_01/locations_for_move.rb +56 -0
  123. data/lib/shopify_api/rest/resources/2022_01/marketing_event.rb +209 -0
  124. data/lib/shopify_api/rest/resources/2022_01/metafield.rb +349 -0
  125. data/lib/shopify_api/rest/resources/2022_01/mobile_platform_application.rb +110 -0
  126. data/lib/shopify_api/rest/resources/2022_01/order.rb +473 -0
  127. data/lib/shopify_api/rest/resources/2022_01/order_risk.rb +135 -0
  128. data/lib/shopify_api/rest/resources/2022_01/page.rb +194 -0
  129. data/lib/shopify_api/rest/resources/2022_01/payment.rb +140 -0
  130. data/lib/shopify_api/rest/resources/2022_01/payment_gateway.rb +143 -0
  131. data/lib/shopify_api/rest/resources/2022_01/payment_transaction.rb +107 -0
  132. data/lib/shopify_api/rest/resources/2022_01/payout.rb +97 -0
  133. data/lib/shopify_api/rest/resources/2022_01/policy.rb +69 -0
  134. data/lib/shopify_api/rest/resources/2022_01/price_rule.rb +223 -0
  135. data/lib/shopify_api/rest/resources/2022_01/product.rb +223 -0
  136. data/lib/shopify_api/rest/resources/2022_01/product_listing.rb +196 -0
  137. data/lib/shopify_api/rest/resources/2022_01/product_resource_feedback.rb +88 -0
  138. data/lib/shopify_api/rest/resources/2022_01/province.rb +132 -0
  139. data/lib/shopify_api/rest/resources/2022_01/recurring_application_charge.rb +167 -0
  140. data/lib/shopify_api/rest/resources/2022_01/redirect.rb +139 -0
  141. data/lib/shopify_api/rest/resources/2022_01/refund.rb +151 -0
  142. data/lib/shopify_api/rest/resources/2022_01/report.rb +121 -0
  143. data/lib/shopify_api/rest/resources/2022_01/resource_feedback.rb +73 -0
  144. data/lib/shopify_api/rest/resources/2022_01/script_tag.rb +155 -0
  145. data/lib/shopify_api/rest/resources/2022_01/shipping_zone.rb +83 -0
  146. data/lib/shopify_api/rest/resources/2022_01/shop.rb +218 -0
  147. data/lib/shopify_api/rest/resources/2022_01/smart_collection.rb +216 -0
  148. data/lib/shopify_api/rest/resources/2022_01/storefront_access_token.rb +87 -0
  149. data/lib/shopify_api/rest/resources/2022_01/tender_transaction.rb +93 -0
  150. data/lib/shopify_api/rest/resources/2022_01/theme.rb +120 -0
  151. data/lib/shopify_api/rest/resources/2022_01/transaction.rb +181 -0
  152. data/lib/shopify_api/rest/resources/2022_01/usage_charge.rb +97 -0
  153. data/lib/shopify_api/rest/resources/2022_01/user.rb +138 -0
  154. data/lib/shopify_api/rest/resources/2022_01/variant.rb +212 -0
  155. data/lib/shopify_api/rest/resources/2022_01/webhook.rb +168 -0
  156. data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +190 -0
  157. data/lib/shopify_api/rest/resources/2022_04/access_scope.rb +58 -0
  158. data/lib/shopify_api/rest/resources/2022_04/android_pay_key.rb +77 -0
  159. data/lib/shopify_api/rest/resources/2022_04/apple_pay_certificate.rb +105 -0
  160. data/lib/shopify_api/rest/resources/2022_04/application_charge.rb +104 -0
  161. data/lib/shopify_api/rest/resources/2022_04/application_credit.rb +87 -0
  162. data/lib/shopify_api/rest/resources/2022_04/article.rb +265 -0
  163. data/lib/shopify_api/rest/resources/2022_04/asset.rb +118 -0
  164. data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +86 -0
  165. data/lib/shopify_api/rest/resources/2022_04/balance.rb +50 -0
  166. data/lib/shopify_api/rest/resources/2022_04/blog.rb +162 -0
  167. data/lib/shopify_api/rest/resources/2022_04/cancellation_request.rb +83 -0
  168. data/lib/shopify_api/rest/resources/2022_04/carrier_service.rb +116 -0
  169. data/lib/shopify_api/rest/resources/2022_04/checkout.rb +209 -0
  170. data/lib/shopify_api/rest/resources/2022_04/collect.rb +142 -0
  171. data/lib/shopify_api/rest/resources/2022_04/collection.rb +110 -0
  172. data/lib/shopify_api/rest/resources/2022_04/collection_listing.rb +155 -0
  173. data/lib/shopify_api/rest/resources/2022_04/comment.rb +283 -0
  174. data/lib/shopify_api/rest/resources/2022_04/country.rb +137 -0
  175. data/lib/shopify_api/rest/resources/2022_04/currency.rb +57 -0
  176. data/lib/shopify_api/rest/resources/2022_04/custom_collection.rb +187 -0
  177. data/lib/shopify_api/rest/resources/2022_04/customer.rb +329 -0
  178. data/lib/shopify_api/rest/resources/2022_04/customer_address.rb +201 -0
  179. data/lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb +169 -0
  180. data/lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb +57 -0
  181. data/lib/shopify_api/rest/resources/2022_04/discount_code.rb +219 -0
  182. data/lib/shopify_api/rest/resources/2022_04/dispute.rb +111 -0
  183. data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +275 -0
  184. data/lib/shopify_api/rest/resources/2022_04/event.rb +148 -0
  185. data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +272 -0
  186. data/lib/shopify_api/rest/resources/2022_04/fulfillment_event.rb +166 -0
  187. data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +284 -0
  188. data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +87 -0
  189. data/lib/shopify_api/rest/resources/2022_04/fulfillment_service.rb +130 -0
  190. data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +215 -0
  191. data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +118 -0
  192. data/lib/shopify_api/rest/resources/2022_04/image.rb +157 -0
  193. data/lib/shopify_api/rest/resources/2022_04/inventory_item.rb +108 -0
  194. data/lib/shopify_api/rest/resources/2022_04/inventory_level.rb +179 -0
  195. data/lib/shopify_api/rest/resources/2022_04/location.rb +167 -0
  196. data/lib/shopify_api/rest/resources/2022_04/locations_for_move.rb +56 -0
  197. data/lib/shopify_api/rest/resources/2022_04/marketing_event.rb +209 -0
  198. data/lib/shopify_api/rest/resources/2022_04/metafield.rb +344 -0
  199. data/lib/shopify_api/rest/resources/2022_04/mobile_platform_application.rb +110 -0
  200. data/lib/shopify_api/rest/resources/2022_04/order.rb +473 -0
  201. data/lib/shopify_api/rest/resources/2022_04/order_risk.rb +135 -0
  202. data/lib/shopify_api/rest/resources/2022_04/page.rb +194 -0
  203. data/lib/shopify_api/rest/resources/2022_04/payment.rb +140 -0
  204. data/lib/shopify_api/rest/resources/2022_04/payment_gateway.rb +143 -0
  205. data/lib/shopify_api/rest/resources/2022_04/payment_transaction.rb +107 -0
  206. data/lib/shopify_api/rest/resources/2022_04/payout.rb +97 -0
  207. data/lib/shopify_api/rest/resources/2022_04/policy.rb +69 -0
  208. data/lib/shopify_api/rest/resources/2022_04/price_rule.rb +223 -0
  209. data/lib/shopify_api/rest/resources/2022_04/product.rb +223 -0
  210. data/lib/shopify_api/rest/resources/2022_04/product_listing.rb +196 -0
  211. data/lib/shopify_api/rest/resources/2022_04/product_resource_feedback.rb +88 -0
  212. data/lib/shopify_api/rest/resources/2022_04/province.rb +132 -0
  213. data/lib/shopify_api/rest/resources/2022_04/recurring_application_charge.rb +167 -0
  214. data/lib/shopify_api/rest/resources/2022_04/redirect.rb +139 -0
  215. data/lib/shopify_api/rest/resources/2022_04/refund.rb +151 -0
  216. data/lib/shopify_api/rest/resources/2022_04/report.rb +121 -0
  217. data/lib/shopify_api/rest/resources/2022_04/resource_feedback.rb +73 -0
  218. data/lib/shopify_api/rest/resources/2022_04/script_tag.rb +155 -0
  219. data/lib/shopify_api/rest/resources/2022_04/shipping_zone.rb +83 -0
  220. data/lib/shopify_api/rest/resources/2022_04/shop.rb +218 -0
  221. data/lib/shopify_api/rest/resources/2022_04/smart_collection.rb +216 -0
  222. data/lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb +87 -0
  223. data/lib/shopify_api/rest/resources/2022_04/tender_transaction.rb +93 -0
  224. data/lib/shopify_api/rest/resources/2022_04/theme.rb +120 -0
  225. data/lib/shopify_api/rest/resources/2022_04/transaction.rb +181 -0
  226. data/lib/shopify_api/rest/resources/2022_04/usage_charge.rb +97 -0
  227. data/lib/shopify_api/rest/resources/2022_04/user.rb +138 -0
  228. data/lib/shopify_api/rest/resources/2022_04/variant.rb +212 -0
  229. data/lib/shopify_api/rest/resources/2022_04/webhook.rb +168 -0
  230. data/lib/shopify_api/rest/resources/2022_07/abandoned_checkout.rb +190 -0
  231. data/lib/shopify_api/rest/resources/2022_07/access_scope.rb +58 -0
  232. data/lib/shopify_api/rest/resources/2022_07/android_pay_key.rb +77 -0
  233. data/lib/shopify_api/rest/resources/2022_07/apple_pay_certificate.rb +105 -0
  234. data/lib/shopify_api/rest/resources/2022_07/application_charge.rb +104 -0
  235. data/lib/shopify_api/rest/resources/2022_07/application_credit.rb +87 -0
  236. data/lib/shopify_api/rest/resources/2022_07/article.rb +265 -0
  237. data/lib/shopify_api/rest/resources/2022_07/asset.rb +118 -0
  238. data/lib/shopify_api/rest/resources/2022_07/assigned_fulfillment_order.rb +86 -0
  239. data/lib/shopify_api/rest/resources/2022_07/balance.rb +50 -0
  240. data/lib/shopify_api/rest/resources/2022_07/blog.rb +162 -0
  241. data/lib/shopify_api/rest/resources/2022_07/cancellation_request.rb +83 -0
  242. data/lib/shopify_api/rest/resources/2022_07/carrier_service.rb +113 -0
  243. data/lib/shopify_api/rest/resources/2022_07/checkout.rb +209 -0
  244. data/lib/shopify_api/rest/resources/2022_07/collect.rb +142 -0
  245. data/lib/shopify_api/rest/resources/2022_07/collection.rb +110 -0
  246. data/lib/shopify_api/rest/resources/2022_07/collection_listing.rb +155 -0
  247. data/lib/shopify_api/rest/resources/2022_07/comment.rb +283 -0
  248. data/lib/shopify_api/rest/resources/2022_07/country.rb +137 -0
  249. data/lib/shopify_api/rest/resources/2022_07/currency.rb +57 -0
  250. data/lib/shopify_api/rest/resources/2022_07/custom_collection.rb +187 -0
  251. data/lib/shopify_api/rest/resources/2022_07/customer.rb +329 -0
  252. data/lib/shopify_api/rest/resources/2022_07/customer_address.rb +201 -0
  253. data/lib/shopify_api/rest/resources/2022_07/customer_saved_search.rb +169 -0
  254. data/lib/shopify_api/rest/resources/2022_07/deprecated_api_call.rb +57 -0
  255. data/lib/shopify_api/rest/resources/2022_07/discount_code.rb +219 -0
  256. data/lib/shopify_api/rest/resources/2022_07/dispute.rb +111 -0
  257. data/lib/shopify_api/rest/resources/2022_07/dispute_evidence.rb +117 -0
  258. data/lib/shopify_api/rest/resources/2022_07/dispute_file_upload.rb +81 -0
  259. data/lib/shopify_api/rest/resources/2022_07/draft_order.rb +275 -0
  260. data/lib/shopify_api/rest/resources/2022_07/event.rb +148 -0
  261. data/lib/shopify_api/rest/resources/2022_07/fulfillment.rb +225 -0
  262. data/lib/shopify_api/rest/resources/2022_07/fulfillment_event.rb +166 -0
  263. data/lib/shopify_api/rest/resources/2022_07/fulfillment_order.rb +310 -0
  264. data/lib/shopify_api/rest/resources/2022_07/fulfillment_request.rb +87 -0
  265. data/lib/shopify_api/rest/resources/2022_07/fulfillment_service.rb +130 -0
  266. data/lib/shopify_api/rest/resources/2022_07/gift_card.rb +215 -0
  267. data/lib/shopify_api/rest/resources/2022_07/gift_card_adjustment.rb +118 -0
  268. data/lib/shopify_api/rest/resources/2022_07/image.rb +157 -0
  269. data/lib/shopify_api/rest/resources/2022_07/inventory_item.rb +108 -0
  270. data/lib/shopify_api/rest/resources/2022_07/inventory_level.rb +179 -0
  271. data/lib/shopify_api/rest/resources/2022_07/location.rb +167 -0
  272. data/lib/shopify_api/rest/resources/2022_07/locations_for_move.rb +56 -0
  273. data/lib/shopify_api/rest/resources/2022_07/marketing_event.rb +209 -0
  274. data/lib/shopify_api/rest/resources/2022_07/metafield.rb +344 -0
  275. data/lib/shopify_api/rest/resources/2022_07/mobile_platform_application.rb +110 -0
  276. data/lib/shopify_api/rest/resources/2022_07/order.rb +473 -0
  277. data/lib/shopify_api/rest/resources/2022_07/order_risk.rb +135 -0
  278. data/lib/shopify_api/rest/resources/2022_07/page.rb +194 -0
  279. data/lib/shopify_api/rest/resources/2022_07/payment.rb +140 -0
  280. data/lib/shopify_api/rest/resources/2022_07/payment_gateway.rb +143 -0
  281. data/lib/shopify_api/rest/resources/2022_07/payment_transaction.rb +107 -0
  282. data/lib/shopify_api/rest/resources/2022_07/payout.rb +97 -0
  283. data/lib/shopify_api/rest/resources/2022_07/policy.rb +69 -0
  284. data/lib/shopify_api/rest/resources/2022_07/price_rule.rb +223 -0
  285. data/lib/shopify_api/rest/resources/2022_07/product.rb +223 -0
  286. data/lib/shopify_api/rest/resources/2022_07/product_listing.rb +196 -0
  287. data/lib/shopify_api/rest/resources/2022_07/product_resource_feedback.rb +88 -0
  288. data/lib/shopify_api/rest/resources/2022_07/province.rb +132 -0
  289. data/lib/shopify_api/rest/resources/2022_07/recurring_application_charge.rb +167 -0
  290. data/lib/shopify_api/rest/resources/2022_07/redirect.rb +139 -0
  291. data/lib/shopify_api/rest/resources/2022_07/refund.rb +151 -0
  292. data/lib/shopify_api/rest/resources/2022_07/report.rb +121 -0
  293. data/lib/shopify_api/rest/resources/2022_07/resource_feedback.rb +73 -0
  294. data/lib/shopify_api/rest/resources/2022_07/script_tag.rb +155 -0
  295. data/lib/shopify_api/rest/resources/2022_07/shipping_zone.rb +83 -0
  296. data/lib/shopify_api/rest/resources/2022_07/shop.rb +218 -0
  297. data/lib/shopify_api/rest/resources/2022_07/smart_collection.rb +216 -0
  298. data/lib/shopify_api/rest/resources/2022_07/storefront_access_token.rb +87 -0
  299. data/lib/shopify_api/rest/resources/2022_07/tender_transaction.rb +93 -0
  300. data/lib/shopify_api/rest/resources/2022_07/theme.rb +120 -0
  301. data/lib/shopify_api/rest/resources/2022_07/transaction.rb +181 -0
  302. data/lib/shopify_api/rest/resources/2022_07/usage_charge.rb +97 -0
  303. data/lib/shopify_api/rest/resources/2022_07/user.rb +138 -0
  304. data/lib/shopify_api/rest/resources/2022_07/variant.rb +212 -0
  305. data/lib/shopify_api/rest/resources/2022_07/webhook.rb +168 -0
  306. data/lib/shopify_api/rest/resources/2022_10/abandoned_checkout.rb +190 -0
  307. data/lib/shopify_api/rest/resources/2022_10/access_scope.rb +58 -0
  308. data/lib/shopify_api/rest/resources/2022_10/android_pay_key.rb +77 -0
  309. data/lib/shopify_api/rest/resources/2022_10/apple_pay_certificate.rb +105 -0
  310. data/lib/shopify_api/rest/resources/2022_10/application_charge.rb +104 -0
  311. data/lib/shopify_api/rest/resources/2022_10/application_credit.rb +87 -0
  312. data/lib/shopify_api/rest/resources/2022_10/article.rb +265 -0
  313. data/lib/shopify_api/rest/resources/2022_10/asset.rb +118 -0
  314. data/lib/shopify_api/rest/resources/2022_10/assigned_fulfillment_order.rb +86 -0
  315. data/lib/shopify_api/rest/resources/2022_10/balance.rb +50 -0
  316. data/lib/shopify_api/rest/resources/2022_10/blog.rb +162 -0
  317. data/lib/shopify_api/rest/resources/2022_10/cancellation_request.rb +83 -0
  318. data/lib/shopify_api/rest/resources/2022_10/carrier_service.rb +113 -0
  319. data/lib/shopify_api/rest/resources/2022_10/checkout.rb +209 -0
  320. data/lib/shopify_api/rest/resources/2022_10/collect.rb +142 -0
  321. data/lib/shopify_api/rest/resources/2022_10/collection.rb +110 -0
  322. data/lib/shopify_api/rest/resources/2022_10/collection_listing.rb +155 -0
  323. data/lib/shopify_api/rest/resources/2022_10/comment.rb +283 -0
  324. data/lib/shopify_api/rest/resources/2022_10/country.rb +137 -0
  325. data/lib/shopify_api/rest/resources/2022_10/currency.rb +57 -0
  326. data/lib/shopify_api/rest/resources/2022_10/custom_collection.rb +187 -0
  327. data/lib/shopify_api/rest/resources/2022_10/customer.rb +329 -0
  328. data/lib/shopify_api/rest/resources/2022_10/customer_address.rb +201 -0
  329. data/lib/shopify_api/rest/resources/2022_10/customer_saved_search.rb +169 -0
  330. data/lib/shopify_api/rest/resources/2022_10/deprecated_api_call.rb +57 -0
  331. data/lib/shopify_api/rest/resources/2022_10/discount_code.rb +219 -0
  332. data/lib/shopify_api/rest/resources/2022_10/dispute.rb +111 -0
  333. data/lib/shopify_api/rest/resources/2022_10/dispute_evidence.rb +117 -0
  334. data/lib/shopify_api/rest/resources/2022_10/dispute_file_upload.rb +81 -0
  335. data/lib/shopify_api/rest/resources/2022_10/draft_order.rb +275 -0
  336. data/lib/shopify_api/rest/resources/2022_10/event.rb +148 -0
  337. data/lib/shopify_api/rest/resources/2022_10/fulfillment.rb +225 -0
  338. data/lib/shopify_api/rest/resources/2022_10/fulfillment_event.rb +166 -0
  339. data/lib/shopify_api/rest/resources/2022_10/fulfillment_order.rb +310 -0
  340. data/lib/shopify_api/rest/resources/2022_10/fulfillment_request.rb +87 -0
  341. data/lib/shopify_api/rest/resources/2022_10/fulfillment_service.rb +130 -0
  342. data/lib/shopify_api/rest/resources/2022_10/gift_card.rb +215 -0
  343. data/lib/shopify_api/rest/resources/2022_10/gift_card_adjustment.rb +118 -0
  344. data/lib/shopify_api/rest/resources/2022_10/image.rb +157 -0
  345. data/lib/shopify_api/rest/resources/2022_10/inventory_item.rb +108 -0
  346. data/lib/shopify_api/rest/resources/2022_10/inventory_level.rb +179 -0
  347. data/lib/shopify_api/rest/resources/2022_10/location.rb +167 -0
  348. data/lib/shopify_api/rest/resources/2022_10/locations_for_move.rb +56 -0
  349. data/lib/shopify_api/rest/resources/2022_10/marketing_event.rb +209 -0
  350. data/lib/shopify_api/rest/resources/2022_10/metafield.rb +344 -0
  351. data/lib/shopify_api/rest/resources/2022_10/mobile_platform_application.rb +110 -0
  352. data/lib/shopify_api/rest/resources/2022_10/order.rb +476 -0
  353. data/lib/shopify_api/rest/resources/2022_10/order_risk.rb +135 -0
  354. data/lib/shopify_api/rest/resources/2022_10/page.rb +194 -0
  355. data/lib/shopify_api/rest/resources/2022_10/payment.rb +140 -0
  356. data/lib/shopify_api/rest/resources/2022_10/payment_gateway.rb +143 -0
  357. data/lib/shopify_api/rest/resources/2022_10/payment_transaction.rb +107 -0
  358. data/lib/shopify_api/rest/resources/2022_10/payout.rb +97 -0
  359. data/lib/shopify_api/rest/resources/2022_10/policy.rb +69 -0
  360. data/lib/shopify_api/rest/resources/2022_10/price_rule.rb +223 -0
  361. data/lib/shopify_api/rest/resources/2022_10/product.rb +223 -0
  362. data/lib/shopify_api/rest/resources/2022_10/product_listing.rb +196 -0
  363. data/lib/shopify_api/rest/resources/2022_10/product_resource_feedback.rb +88 -0
  364. data/lib/shopify_api/rest/resources/2022_10/province.rb +132 -0
  365. data/lib/shopify_api/rest/resources/2022_10/recurring_application_charge.rb +167 -0
  366. data/lib/shopify_api/rest/resources/2022_10/redirect.rb +139 -0
  367. data/lib/shopify_api/rest/resources/2022_10/refund.rb +151 -0
  368. data/lib/shopify_api/rest/resources/2022_10/report.rb +121 -0
  369. data/lib/shopify_api/rest/resources/2022_10/resource_feedback.rb +73 -0
  370. data/lib/shopify_api/rest/resources/2022_10/script_tag.rb +155 -0
  371. data/lib/shopify_api/rest/resources/2022_10/shipping_zone.rb +83 -0
  372. data/lib/shopify_api/rest/resources/2022_10/shop.rb +221 -0
  373. data/lib/shopify_api/rest/resources/2022_10/smart_collection.rb +216 -0
  374. data/lib/shopify_api/rest/resources/2022_10/storefront_access_token.rb +87 -0
  375. data/lib/shopify_api/rest/resources/2022_10/tender_transaction.rb +93 -0
  376. data/lib/shopify_api/rest/resources/2022_10/theme.rb +120 -0
  377. data/lib/shopify_api/rest/resources/2022_10/transaction.rb +181 -0
  378. data/lib/shopify_api/rest/resources/2022_10/usage_charge.rb +97 -0
  379. data/lib/shopify_api/rest/resources/2022_10/user.rb +138 -0
  380. data/lib/shopify_api/rest/resources/2022_10/variant.rb +212 -0
  381. data/lib/shopify_api/rest/resources/2022_10/webhook.rb +168 -0
  382. data/lib/shopify_api/rest/resources/2023_01/abandoned_checkout.rb +190 -0
  383. data/lib/shopify_api/rest/resources/2023_01/access_scope.rb +58 -0
  384. data/lib/shopify_api/rest/resources/2023_01/apple_pay_certificate.rb +105 -0
  385. data/lib/shopify_api/rest/resources/2023_01/application_charge.rb +104 -0
  386. data/lib/shopify_api/rest/resources/2023_01/application_credit.rb +87 -0
  387. data/lib/shopify_api/rest/resources/2023_01/article.rb +265 -0
  388. data/lib/shopify_api/rest/resources/2023_01/asset.rb +118 -0
  389. data/lib/shopify_api/rest/resources/2023_01/assigned_fulfillment_order.rb +86 -0
  390. data/lib/shopify_api/rest/resources/2023_01/balance.rb +50 -0
  391. data/lib/shopify_api/rest/resources/2023_01/blog.rb +162 -0
  392. data/lib/shopify_api/rest/resources/2023_01/cancellation_request.rb +83 -0
  393. data/lib/shopify_api/rest/resources/2023_01/carrier_service.rb +113 -0
  394. data/lib/shopify_api/rest/resources/2023_01/checkout.rb +209 -0
  395. data/lib/shopify_api/rest/resources/2023_01/collect.rb +142 -0
  396. data/lib/shopify_api/rest/resources/2023_01/collection.rb +110 -0
  397. data/lib/shopify_api/rest/resources/2023_01/collection_listing.rb +155 -0
  398. data/lib/shopify_api/rest/resources/2023_01/comment.rb +283 -0
  399. data/lib/shopify_api/rest/resources/2023_01/country.rb +137 -0
  400. data/lib/shopify_api/rest/resources/2023_01/currency.rb +57 -0
  401. data/lib/shopify_api/rest/resources/2023_01/custom_collection.rb +187 -0
  402. data/lib/shopify_api/rest/resources/2023_01/customer.rb +329 -0
  403. data/lib/shopify_api/rest/resources/2023_01/customer_address.rb +201 -0
  404. data/lib/shopify_api/rest/resources/2023_01/customer_saved_search.rb +169 -0
  405. data/lib/shopify_api/rest/resources/2023_01/deprecated_api_call.rb +57 -0
  406. data/lib/shopify_api/rest/resources/2023_01/discount_code.rb +219 -0
  407. data/lib/shopify_api/rest/resources/2023_01/dispute.rb +111 -0
  408. data/lib/shopify_api/rest/resources/2023_01/draft_order.rb +275 -0
  409. data/lib/shopify_api/rest/resources/2023_01/event.rb +148 -0
  410. data/lib/shopify_api/rest/resources/2023_01/fulfillment.rb +225 -0
  411. data/lib/shopify_api/rest/resources/2023_01/fulfillment_event.rb +166 -0
  412. data/lib/shopify_api/rest/resources/2023_01/fulfillment_order.rb +316 -0
  413. data/lib/shopify_api/rest/resources/2023_01/fulfillment_request.rb +87 -0
  414. data/lib/shopify_api/rest/resources/2023_01/fulfillment_service.rb +130 -0
  415. data/lib/shopify_api/rest/resources/2023_01/gift_card.rb +215 -0
  416. data/lib/shopify_api/rest/resources/2023_01/gift_card_adjustment.rb +118 -0
  417. data/lib/shopify_api/rest/resources/2023_01/image.rb +157 -0
  418. data/lib/shopify_api/rest/resources/2023_01/inventory_item.rb +108 -0
  419. data/lib/shopify_api/rest/resources/2023_01/inventory_level.rb +179 -0
  420. data/lib/shopify_api/rest/resources/2023_01/location.rb +167 -0
  421. data/lib/shopify_api/rest/resources/2023_01/locations_for_move.rb +56 -0
  422. data/lib/shopify_api/rest/resources/2023_01/marketing_event.rb +209 -0
  423. data/lib/shopify_api/rest/resources/2023_01/metafield.rb +344 -0
  424. data/lib/shopify_api/rest/resources/2023_01/mobile_platform_application.rb +110 -0
  425. data/lib/shopify_api/rest/resources/2023_01/order.rb +479 -0
  426. data/lib/shopify_api/rest/resources/2023_01/order_risk.rb +135 -0
  427. data/lib/shopify_api/rest/resources/2023_01/page.rb +194 -0
  428. data/lib/shopify_api/rest/resources/2023_01/payment.rb +140 -0
  429. data/lib/shopify_api/rest/resources/2023_01/payment_gateway.rb +143 -0
  430. data/lib/shopify_api/rest/resources/2023_01/payment_transaction.rb +107 -0
  431. data/lib/shopify_api/rest/resources/2023_01/payout.rb +97 -0
  432. data/lib/shopify_api/rest/resources/2023_01/policy.rb +69 -0
  433. data/lib/shopify_api/rest/resources/2023_01/price_rule.rb +223 -0
  434. data/lib/shopify_api/rest/resources/2023_01/product.rb +223 -0
  435. data/lib/shopify_api/rest/resources/2023_01/product_listing.rb +196 -0
  436. data/lib/shopify_api/rest/resources/2023_01/product_resource_feedback.rb +88 -0
  437. data/lib/shopify_api/rest/resources/2023_01/province.rb +132 -0
  438. data/lib/shopify_api/rest/resources/2023_01/recurring_application_charge.rb +167 -0
  439. data/lib/shopify_api/rest/resources/2023_01/redirect.rb +139 -0
  440. data/lib/shopify_api/rest/resources/2023_01/refund.rb +151 -0
  441. data/lib/shopify_api/rest/resources/2023_01/report.rb +121 -0
  442. data/lib/shopify_api/rest/resources/2023_01/resource_feedback.rb +73 -0
  443. data/lib/shopify_api/rest/resources/2023_01/script_tag.rb +155 -0
  444. data/lib/shopify_api/rest/resources/2023_01/shipping_zone.rb +83 -0
  445. data/lib/shopify_api/rest/resources/2023_01/shop.rb +221 -0
  446. data/lib/shopify_api/rest/resources/2023_01/smart_collection.rb +216 -0
  447. data/lib/shopify_api/rest/resources/2023_01/storefront_access_token.rb +87 -0
  448. data/lib/shopify_api/rest/resources/2023_01/tender_transaction.rb +93 -0
  449. data/lib/shopify_api/rest/resources/2023_01/theme.rb +120 -0
  450. data/lib/shopify_api/rest/resources/2023_01/transaction.rb +181 -0
  451. data/lib/shopify_api/rest/resources/2023_01/usage_charge.rb +97 -0
  452. data/lib/shopify_api/rest/resources/2023_01/user.rb +138 -0
  453. data/lib/shopify_api/rest/resources/2023_01/variant.rb +212 -0
  454. data/lib/shopify_api/rest/resources/2023_01/webhook.rb +168 -0
  455. data/lib/shopify_api/utils/graphql_proxy.rb +52 -0
  456. data/lib/shopify_api/utils/hmac_validator.rb +44 -0
  457. data/lib/shopify_api/utils/http_utils.rb +17 -0
  458. data/lib/shopify_api/utils/session_utils.rb +152 -0
  459. data/lib/shopify_api/utils/verifiable_query.rb +18 -0
  460. data/lib/shopify_api/version.rb +4 -1
  461. data/lib/shopify_api/webhooks/handler.rb +15 -0
  462. data/lib/shopify_api/webhooks/register_result.rb +14 -0
  463. data/lib/shopify_api/webhooks/registration.rb +73 -0
  464. data/lib/shopify_api/webhooks/registrations/event_bridge.rb +61 -0
  465. data/lib/shopify_api/webhooks/registrations/http.rb +72 -0
  466. data/lib/shopify_api/webhooks/registrations/pub_sub.rb +65 -0
  467. data/lib/shopify_api/webhooks/registry.rb +215 -0
  468. data/lib/shopify_api/webhooks/request.rb +56 -0
  469. data/lib/shopify_api.rb +19 -26
  470. data/service.yml +1 -0
  471. data/shipit.rubygems.yml +1 -1
  472. data/shopify_api.gemspec +36 -19
  473. data/sorbet/config +3 -0
  474. data/sorbet/rbi/gems/activesupport@7.0.1.rbi +654 -0
  475. data/sorbet/rbi/gems/addressable@2.8.0.rbi +290 -0
  476. data/sorbet/rbi/gems/ast@2.4.2.rbi +54 -0
  477. data/sorbet/rbi/gems/coderay@1.1.3.rbi +8 -0
  478. data/sorbet/rbi/gems/concurrent-ruby@1.1.9.rbi +2401 -0
  479. data/sorbet/rbi/gems/crack@0.4.5.rbi +57 -0
  480. data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +185 -0
  481. data/sorbet/rbi/gems/fakefs@1.4.1.rbi +571 -0
  482. data/sorbet/rbi/gems/hash_diff@1.0.0.rbi +47 -0
  483. data/sorbet/rbi/gems/hashdiff@1.0.1.rbi +82 -0
  484. data/sorbet/rbi/gems/httparty@0.20.0.rbi +573 -0
  485. data/sorbet/rbi/gems/i18n@1.8.11.rbi +25 -0
  486. data/sorbet/rbi/gems/jwt@2.3.0.rbi +437 -0
  487. data/sorbet/rbi/gems/method_source@1.0.0.rbi +8 -0
  488. data/sorbet/rbi/gems/mime-types-data@3.2022.0105.rbi +73 -0
  489. data/sorbet/rbi/gems/mime-types@3.4.1.rbi +295 -0
  490. data/sorbet/rbi/gems/minitest@5.15.0.rbi +541 -0
  491. data/sorbet/rbi/gems/mocha@1.13.0.rbi +986 -0
  492. data/sorbet/rbi/gems/multi_xml@0.6.0.rbi +36 -0
  493. data/sorbet/rbi/gems/oj@3.13.11.rbi +274 -0
  494. data/sorbet/rbi/gems/openssl@3.0.0.rbi +581 -0
  495. data/sorbet/rbi/gems/parallel@1.21.0.rbi +113 -0
  496. data/sorbet/rbi/gems/parser@3.1.0.0.rbi +1741 -0
  497. data/sorbet/rbi/gems/pry@0.14.1.rbi +8 -0
  498. data/sorbet/rbi/gems/public_suffix@4.0.6.rbi +145 -0
  499. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +157 -0
  500. data/sorbet/rbi/gems/rake@13.0.6.rbi +814 -0
  501. data/sorbet/rbi/gems/rbi@0.0.11.rbi +1646 -0
  502. data/sorbet/rbi/gems/regexp_parser@2.2.0.rbi +1130 -0
  503. data/sorbet/rbi/gems/rexml@3.2.5.rbi +709 -0
  504. data/sorbet/rbi/gems/rubocop-ast@1.15.1.rbi +1921 -0
  505. data/sorbet/rbi/gems/rubocop-shopify@2.4.0.rbi +8 -0
  506. data/sorbet/rbi/gems/rubocop-sorbet@0.6.5.rbi +295 -0
  507. data/sorbet/rbi/gems/rubocop@1.25.1.rbi +13507 -0
  508. data/sorbet/rbi/gems/ruby-progressbar@1.11.0.rbi +405 -0
  509. data/sorbet/rbi/gems/securerandom@0.1.1.rbi +10 -0
  510. data/sorbet/rbi/gems/spoom@1.1.8.rbi +1252 -0
  511. data/sorbet/rbi/gems/tapioca@0.6.3.rbi +1238 -0
  512. data/sorbet/rbi/gems/thor@1.2.1.rbi +844 -0
  513. data/sorbet/rbi/gems/tzinfo@2.0.4.rbi +858 -0
  514. data/sorbet/rbi/gems/unicode-display_width@2.1.0.rbi +26 -0
  515. data/sorbet/rbi/gems/unparser@0.6.3.rbi +1816 -0
  516. data/sorbet/rbi/gems/webmock@3.14.0.rbi +683 -0
  517. data/sorbet/rbi/gems/webrick@1.7.0.rbi +601 -0
  518. data/sorbet/rbi/gems/yard-sorbet@0.6.1.rbi +199 -0
  519. data/sorbet/rbi/gems/yard@0.9.27.rbi +4145 -0
  520. data/sorbet/rbi/gems/zeitwerk@2.5.4.rbi +200 -0
  521. data/sorbet/rbi/shims/fakefs.rbi +1 -0
  522. data/sorbet/rbi/shims/openssl.rb +3 -0
  523. data/sorbet/rbi/todo.rbi +8 -0
  524. data/sorbet/tapioca/config.yml +4 -0
  525. data/sorbet/tapioca/require.rb +20 -0
  526. metadata +687 -274
  527. data/.document +0 -5
  528. data/.gitignore +0 -10
  529. data/.travis.yml +0 -32
  530. data/CHANGELOG +0 -310
  531. data/CONTRIBUTORS +0 -3
  532. data/Gemfile_ar30 +0 -6
  533. data/Gemfile_ar31 +0 -6
  534. data/Gemfile_ar32 +0 -6
  535. data/Gemfile_ar40 +0 -6
  536. data/Gemfile_ar_master +0 -6
  537. data/RELEASING +0 -16
  538. data/bin/shopify +0 -3
  539. data/lib/active_resource/base_ext.rb +0 -21
  540. data/lib/active_resource/connection_ext.rb +0 -10
  541. data/lib/active_resource/detailed_log_subscriber.rb +0 -19
  542. data/lib/active_resource/disable_prefix_check.rb +0 -36
  543. data/lib/active_resource/json_errors.rb +0 -31
  544. data/lib/active_resource/to_query.rb +0 -10
  545. data/lib/shopify_api/connection.rb +0 -33
  546. data/lib/shopify_api/countable.rb +0 -14
  547. data/lib/shopify_api/events.rb +0 -7
  548. data/lib/shopify_api/json_format.rb +0 -18
  549. data/lib/shopify_api/limits.rb +0 -76
  550. data/lib/shopify_api/metafields.rb +0 -20
  551. data/lib/shopify_api/resources/access_scope.rb +0 -5
  552. data/lib/shopify_api/resources/access_token.rb +0 -8
  553. data/lib/shopify_api/resources/address.rb +0 -4
  554. data/lib/shopify_api/resources/announcement.rb +0 -4
  555. data/lib/shopify_api/resources/api_permission.rb +0 -9
  556. data/lib/shopify_api/resources/application_charge.rb +0 -15
  557. data/lib/shopify_api/resources/application_credit.rb +0 -4
  558. data/lib/shopify_api/resources/article.rb +0 -21
  559. data/lib/shopify_api/resources/asset.rb +0 -96
  560. data/lib/shopify_api/resources/base.rb +0 -89
  561. data/lib/shopify_api/resources/billing_address.rb +0 -4
  562. data/lib/shopify_api/resources/blog.rb +0 -10
  563. data/lib/shopify_api/resources/carrier_service.rb +0 -4
  564. data/lib/shopify_api/resources/cart.rb +0 -4
  565. data/lib/shopify_api/resources/checkout.rb +0 -4
  566. data/lib/shopify_api/resources/collect.rb +0 -5
  567. data/lib/shopify_api/resources/collection_listing.rb +0 -9
  568. data/lib/shopify_api/resources/comment.rb +0 -9
  569. data/lib/shopify_api/resources/country.rb +0 -4
  570. data/lib/shopify_api/resources/custom_collection.rb +0 -19
  571. data/lib/shopify_api/resources/customer.rb +0 -29
  572. data/lib/shopify_api/resources/customer_group.rb +0 -5
  573. data/lib/shopify_api/resources/customer_invite.rb +0 -4
  574. data/lib/shopify_api/resources/customer_saved_search.rb +0 -9
  575. data/lib/shopify_api/resources/discount_code.rb +0 -9
  576. data/lib/shopify_api/resources/draft_order.rb +0 -14
  577. data/lib/shopify_api/resources/draft_order_invoice.rb +0 -4
  578. data/lib/shopify_api/resources/event.rb +0 -7
  579. data/lib/shopify_api/resources/fulfillment.rb +0 -13
  580. data/lib/shopify_api/resources/fulfillment_event.rb +0 -15
  581. data/lib/shopify_api/resources/fulfillment_request.rb +0 -15
  582. data/lib/shopify_api/resources/fulfillment_service.rb +0 -4
  583. data/lib/shopify_api/resources/gift_card.rb +0 -7
  584. data/lib/shopify_api/resources/graphql.rb +0 -22
  585. data/lib/shopify_api/resources/image.rb +0 -16
  586. data/lib/shopify_api/resources/inventory_item.rb +0 -6
  587. data/lib/shopify_api/resources/inventory_level.rb +0 -55
  588. data/lib/shopify_api/resources/line_item.rb +0 -14
  589. data/lib/shopify_api/resources/location.rb +0 -8
  590. data/lib/shopify_api/resources/marketing_event.rb +0 -8
  591. data/lib/shopify_api/resources/metafield.rb +0 -12
  592. data/lib/shopify_api/resources/note_attribute.rb +0 -4
  593. data/lib/shopify_api/resources/o_auth.rb +0 -17
  594. data/lib/shopify_api/resources/option.rb +0 -4
  595. data/lib/shopify_api/resources/order.rb +0 -29
  596. data/lib/shopify_api/resources/order_risk.rb +0 -8
  597. data/lib/shopify_api/resources/page.rb +0 -6
  598. data/lib/shopify_api/resources/payment_details.rb +0 -4
  599. data/lib/shopify_api/resources/policy.rb +0 -7
  600. data/lib/shopify_api/resources/price_rule.rb +0 -8
  601. data/lib/shopify_api/resources/product.rb +0 -33
  602. data/lib/shopify_api/resources/product_listing.rb +0 -9
  603. data/lib/shopify_api/resources/province.rb +0 -5
  604. data/lib/shopify_api/resources/receipt.rb +0 -4
  605. data/lib/shopify_api/resources/recurring_application_charge.rb +0 -31
  606. data/lib/shopify_api/resources/redirect.rb +0 -4
  607. data/lib/shopify_api/resources/refund.rb +0 -13
  608. data/lib/shopify_api/resources/report.rb +0 -4
  609. data/lib/shopify_api/resources/resource_feedback.rb +0 -19
  610. data/lib/shopify_api/resources/rule.rb +0 -4
  611. data/lib/shopify_api/resources/script_tag.rb +0 -4
  612. data/lib/shopify_api/resources/shipping_address.rb +0 -4
  613. data/lib/shopify_api/resources/shipping_line.rb +0 -4
  614. data/lib/shopify_api/resources/shipping_zone.rb +0 -4
  615. data/lib/shopify_api/resources/shop.rb +0 -23
  616. data/lib/shopify_api/resources/smart_collection.rb +0 -15
  617. data/lib/shopify_api/resources/storefront_access_token.rb +0 -4
  618. data/lib/shopify_api/resources/tax_line.rb +0 -4
  619. data/lib/shopify_api/resources/tax_service.rb +0 -4
  620. data/lib/shopify_api/resources/theme.rb +0 -4
  621. data/lib/shopify_api/resources/transaction.rb +0 -5
  622. data/lib/shopify_api/resources/usage_charge.rb +0 -5
  623. data/lib/shopify_api/resources/user.rb +0 -4
  624. data/lib/shopify_api/resources/variant.rb +0 -8
  625. data/lib/shopify_api/resources/webhook.rb +0 -4
  626. data/lib/shopify_api/resources.rb +0 -2
  627. data/lib/shopify_api/session.rb +0 -144
  628. data/test/access_token_test.rb +0 -19
  629. data/test/active_resource/json_errors_test.rb +0 -19
  630. data/test/api_permission_test.rb +0 -9
  631. data/test/application_charge_test.rb +0 -79
  632. data/test/application_credit_test.rb +0 -35
  633. data/test/article_test.rb +0 -73
  634. data/test/asset_test.rb +0 -18
  635. data/test/base_test.rb +0 -125
  636. data/test/blog_test.rb +0 -8
  637. data/test/carrier_service_test.rb +0 -17
  638. data/test/cart_test.rb +0 -13
  639. data/test/checkouts_test.rb +0 -9
  640. data/test/collect_test.rb +0 -9
  641. data/test/collection_listing_test.rb +0 -41
  642. data/test/countable_test.rb +0 -13
  643. data/test/custom_collection_test.rb +0 -9
  644. data/test/customer_saved_search_test.rb +0 -27
  645. data/test/customer_test.rb +0 -50
  646. data/test/detailed_log_subscriber_test.rb +0 -49
  647. data/test/discount_code_test.rb +0 -53
  648. data/test/draft_order_test.rb +0 -151
  649. data/test/fixtures/access_token_delegate.json +0 -4
  650. data/test/fixtures/application_charge.json +0 -16
  651. data/test/fixtures/application_charges.json +0 -57
  652. data/test/fixtures/application_credit.json +0 -12
  653. data/test/fixtures/application_credits.json +0 -24
  654. data/test/fixtures/article.json +0 -15
  655. data/test/fixtures/articles.json +0 -39
  656. data/test/fixtures/asset.json +0 -9
  657. data/test/fixtures/assets.json +0 -136
  658. data/test/fixtures/authors.json +0 -1
  659. data/test/fixtures/blog.json +0 -13
  660. data/test/fixtures/blogs.json +0 -13
  661. data/test/fixtures/carrier_service.json +0 -9
  662. data/test/fixtures/carts.json +0 -43
  663. data/test/fixtures/checkouts.json +0 -186
  664. data/test/fixtures/collect.json +0 -12
  665. data/test/fixtures/collection_listing.json +0 -11
  666. data/test/fixtures/collection_listing_product_ids.json +0 -1
  667. data/test/fixtures/collection_listings.json +0 -13
  668. data/test/fixtures/custom_collection.json +0 -17
  669. data/test/fixtures/customer_invite.json +0 -9
  670. data/test/fixtures/customer_saved_search.json +0 -9
  671. data/test/fixtures/customer_saved_search_customers.json +0 -60
  672. data/test/fixtures/customers.json +0 -59
  673. data/test/fixtures/customers_account_activation_url.json +0 -3
  674. data/test/fixtures/customers_search.json +0 -60
  675. data/test/fixtures/discount_code.json +0 -10
  676. data/test/fixtures/discount_codes.json +0 -12
  677. data/test/fixtures/draft_order.json +0 -159
  678. data/test/fixtures/draft_order_completed.json +0 -159
  679. data/test/fixtures/draft_order_invoice.json +0 -9
  680. data/test/fixtures/draft_orders.json +0 -161
  681. data/test/fixtures/engagement.json +0 -15
  682. data/test/fixtures/events.json +0 -31
  683. data/test/fixtures/fulfillment.json +0 -49
  684. data/test/fixtures/fulfillment_event.json +0 -12
  685. data/test/fixtures/fulfillment_request.json +0 -28
  686. data/test/fixtures/fulfillment_service.json +0 -10
  687. data/test/fixtures/gift_card.json +0 -20
  688. data/test/fixtures/gift_card_disabled.json +0 -20
  689. data/test/fixtures/image.json +0 -10
  690. data/test/fixtures/images.json +0 -20
  691. data/test/fixtures/inventory_level.json +0 -7
  692. data/test/fixtures/inventory_levels.json +0 -24
  693. data/test/fixtures/marketing_event.json +0 -28
  694. data/test/fixtures/marketing_events.json +0 -54
  695. data/test/fixtures/metafield.json +0 -12
  696. data/test/fixtures/metafields.json +0 -34
  697. data/test/fixtures/o_auth_revoke.json +0 -5
  698. data/test/fixtures/order.json +0 -297
  699. data/test/fixtures/order_risk.json +0 -14
  700. data/test/fixtures/order_risks.json +0 -28
  701. data/test/fixtures/order_with_properties.json +0 -373
  702. data/test/fixtures/orders.json +0 -299
  703. data/test/fixtures/policies.json +0 -8
  704. data/test/fixtures/price_rule.json +0 -27
  705. data/test/fixtures/price_rules.json +0 -28
  706. data/test/fixtures/product.json +0 -116
  707. data/test/fixtures/product_listing.json +0 -86
  708. data/test/fixtures/product_listing_product_ids.json +0 -1
  709. data/test/fixtures/product_listings.json +0 -174
  710. data/test/fixtures/recurring_application_charge.json +0 -22
  711. data/test/fixtures/recurring_application_charge_adjustment.json +0 -5
  712. data/test/fixtures/recurring_application_charges.json +0 -106
  713. data/test/fixtures/redirect.json +0 -7
  714. data/test/fixtures/refund.json +0 -112
  715. data/test/fixtures/report.json +0 -9
  716. data/test/fixtures/reports.json +0 -11
  717. data/test/fixtures/script_tag.json +0 -10
  718. data/test/fixtures/script_tags.json +0 -18
  719. data/test/fixtures/shipping_zones.json +0 -315
  720. data/test/fixtures/shop.json +0 -26
  721. data/test/fixtures/smart_collection.json +0 -21
  722. data/test/fixtures/storefront_access_token.json +0 -9
  723. data/test/fixtures/storefront_access_tokens.json +0 -18
  724. data/test/fixtures/tags.json +0 -1
  725. data/test/fixtures/tax_service.json +0 -9
  726. data/test/fixtures/transaction.json +0 -29
  727. data/test/fixtures/usage_charge.json +0 -11
  728. data/test/fixtures/usage_charges.json +0 -23
  729. data/test/fixtures/user.json +0 -21
  730. data/test/fixtures/users.json +0 -42
  731. data/test/fixtures/variant.json +0 -23
  732. data/test/fixtures/variants.json +0 -88
  733. data/test/fixtures/webhook.json +0 -10
  734. data/test/fixtures/webhooks.json +0 -18
  735. data/test/fulfillment_event_test.rb +0 -69
  736. data/test/fulfillment_request_test.rb +0 -33
  737. data/test/fulfillment_service_test.rb +0 -17
  738. data/test/fulfillment_test.rb +0 -61
  739. data/test/gift_card_test.rb +0 -22
  740. data/test/image_test.rb +0 -39
  741. data/test/inventory_level_test.rb +0 -59
  742. data/test/limits_test.rb +0 -38
  743. data/test/location_test.rb +0 -14
  744. data/test/marketing_event_test.rb +0 -68
  745. data/test/metafield_test.rb +0 -46
  746. data/test/o_auth_test.rb +0 -8
  747. data/test/order_risk_test.rb +0 -46
  748. data/test/order_test.rb +0 -59
  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 -40
  752. data/test/product_test.rb +0 -50
  753. data/test/recurring_application_charge_test.rb +0 -149
  754. data/test/redirect_test.rb +0 -9
  755. data/test/refund_test.rb +0 -32
  756. data/test/report_test.rb +0 -35
  757. data/test/resource_feedback_test.rb +0 -42
  758. data/test/script_tag_test.rb +0 -30
  759. data/test/session_test.rb +0 -250
  760. data/test/shipping_zone_test.rb +0 -10
  761. data/test/shop_test.rb +0 -68
  762. data/test/smart_collection_test.rb +0 -10
  763. data/test/storefront_access_token_test.rb +0 -32
  764. data/test/tax_service_test.rb +0 -8
  765. data/test/test_helper.rb +0 -95
  766. data/test/transaction_test.rb +0 -17
  767. data/test/usage_charge_test.rb +0 -21
  768. data/test/user_test.rb +0 -17
  769. data/test/variant_test.rb +0 -46
  770. data/test/webhook_test.rb +0 -21
data/Gemfile.lock ADDED
@@ -0,0 +1,159 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ shopify_api (12.4.0)
5
+ activesupport
6
+ concurrent-ruby
7
+ hash_diff
8
+ httparty
9
+ jwt
10
+ oj
11
+ openssl
12
+ securerandom
13
+ sorbet-runtime
14
+ zeitwerk (~> 2.5, < 2.6.5)
15
+
16
+ GEM
17
+ remote: https://rubygems.org/
18
+ specs:
19
+ activesupport (7.0.4)
20
+ concurrent-ruby (~> 1.0, >= 1.0.2)
21
+ i18n (>= 1.6, < 2)
22
+ minitest (>= 5.1)
23
+ tzinfo (~> 2.0)
24
+ addressable (2.8.0)
25
+ public_suffix (>= 2.0.2, < 5.0)
26
+ ast (2.4.2)
27
+ byebug (11.1.3)
28
+ coderay (1.1.3)
29
+ concurrent-ruby (1.1.10)
30
+ crack (0.4.5)
31
+ rexml
32
+ diff-lcs (1.5.0)
33
+ fakefs (1.4.1)
34
+ hash_diff (1.1.1)
35
+ hashdiff (1.0.1)
36
+ httparty (0.21.0)
37
+ mini_mime (>= 1.0.0)
38
+ multi_xml (>= 0.5.2)
39
+ i18n (1.12.0)
40
+ concurrent-ruby (~> 1.0)
41
+ json (2.6.2)
42
+ jwt (2.6.0)
43
+ language_server-protocol (3.17.0.1)
44
+ method_source (1.0.0)
45
+ mini_mime (1.1.2)
46
+ minitest (5.15.0)
47
+ mocha (1.13.0)
48
+ multi_xml (0.6.0)
49
+ netrc (0.11.0)
50
+ oj (3.13.23)
51
+ openssl (3.1.0)
52
+ parallel (1.22.1)
53
+ parser (3.1.2.1)
54
+ ast (~> 2.4.1)
55
+ prettier_print (0.1.0)
56
+ pry (0.14.1)
57
+ coderay (~> 1.1)
58
+ method_source (~> 1.0)
59
+ pry-byebug (3.10.1)
60
+ byebug (~> 11.0)
61
+ pry (>= 0.13, < 0.15)
62
+ public_suffix (4.0.6)
63
+ rainbow (3.1.1)
64
+ rake (13.0.6)
65
+ rbi (0.0.15)
66
+ ast
67
+ parser (>= 2.6.4.0)
68
+ sorbet-runtime (>= 0.5.9204)
69
+ unparser
70
+ regexp_parser (2.5.0)
71
+ rexml (3.2.5)
72
+ rubocop (1.36.0)
73
+ json (~> 2.3)
74
+ parallel (~> 1.10)
75
+ parser (>= 3.1.2.1)
76
+ rainbow (>= 2.2.2, < 4.0)
77
+ regexp_parser (>= 1.8, < 3.0)
78
+ rexml (>= 3.2.5, < 4.0)
79
+ rubocop-ast (>= 1.20.1, < 2.0)
80
+ ruby-progressbar (~> 1.7)
81
+ unicode-display_width (>= 1.4.0, < 3.0)
82
+ rubocop-ast (1.21.0)
83
+ parser (>= 3.1.1.0)
84
+ rubocop-shopify (2.10.1)
85
+ rubocop (~> 1.35)
86
+ rubocop-sorbet (0.6.11)
87
+ rubocop (>= 0.90.0)
88
+ ruby-lsp (0.3.2)
89
+ language_server-protocol (~> 3.17.0)
90
+ sorbet-runtime
91
+ syntax_tree (>= 3.4)
92
+ ruby-progressbar (1.11.0)
93
+ securerandom (0.2.2)
94
+ sorbet (0.5.10438)
95
+ sorbet-static (= 0.5.10438)
96
+ sorbet-runtime (0.5.10438)
97
+ sorbet-static (0.5.10438-universal-darwin-21)
98
+ sorbet-static (0.5.10438-universal-darwin-22)
99
+ sorbet-static (0.5.10438-x86_64-linux)
100
+ sorbet-static-and-runtime (0.5.10438)
101
+ sorbet (= 0.5.10438)
102
+ sorbet-runtime (= 0.5.10438)
103
+ spoom (1.1.11)
104
+ sorbet (>= 0.5.9204)
105
+ sorbet-runtime (>= 0.5.9204)
106
+ thor (>= 0.19.2)
107
+ syntax_tree (3.6.1)
108
+ prettier_print
109
+ tapioca (0.10.2)
110
+ bundler (>= 1.17.3)
111
+ netrc (>= 0.11.0)
112
+ parallel (>= 1.21.0)
113
+ pry (>= 0.12.2)
114
+ rbi (~> 0.0.0, >= 0.0.14)
115
+ sorbet-static-and-runtime (>= 0.5.9204)
116
+ spoom (~> 1.1.0, >= 1.1.11)
117
+ thor (>= 1.2.0)
118
+ yard-sorbet
119
+ thor (1.2.1)
120
+ tzinfo (2.0.5)
121
+ concurrent-ruby (~> 1.0)
122
+ unicode-display_width (2.3.0)
123
+ unparser (0.6.5)
124
+ diff-lcs (~> 1.3)
125
+ parser (>= 3.1.0)
126
+ webmock (3.14.0)
127
+ addressable (>= 2.8.0)
128
+ crack (>= 0.3.2)
129
+ hashdiff (>= 0.4.0, < 2.0.0)
130
+ webrick (1.7.0)
131
+ yard (0.9.28)
132
+ webrick (~> 1.7.0)
133
+ yard-sorbet (0.7.0)
134
+ sorbet-runtime (>= 0.5)
135
+ yard (>= 0.9)
136
+ zeitwerk (2.6.4)
137
+
138
+ PLATFORMS
139
+ arm64-darwin-21
140
+ universal-darwin-22
141
+ x86_64-linux
142
+
143
+ DEPENDENCIES
144
+ fakefs
145
+ minitest
146
+ mocha
147
+ pry-byebug
148
+ rake
149
+ rubocop
150
+ rubocop-shopify
151
+ rubocop-sorbet
152
+ ruby-lsp
153
+ shopify_api!
154
+ sorbet
155
+ tapioca
156
+ webmock
157
+
158
+ BUNDLED WITH
159
+ 2.3.4
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 "JadedPixel inc."
1
+ Copyright (c) 2022 Shopify Inc.
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
17
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
18
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
19
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,271 +1,138 @@
1
- Shopify API
2
- ===========
3
- [![Version][gem]][gem_url] [![Build Status](https://travis-ci.org/Shopify/shopify_api.svg?branch=master)](https://travis-ci.org/Shopify/shopify_api)
1
+ # Shopify API Library for Ruby
4
2
 
5
- [gem]: https://img.shields.io/gem/v/shopify_api.svg
6
- [gem_url]: https://rubygems.org/gems/shopify_api
3
+ <!-- ![Build Status]() -->
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
5
+ ![Build Status](https://github.com/Shopify/shopify-api-ruby/workflows/CI/badge.svg?branch=main)
7
6
 
7
+ This library provides support for Ruby [Shopify apps](https://apps.shopify.com/) to access the [Shopify Admin API](https://shopify.dev/api/admin), by making it easier to perform the following actions:
8
8
 
9
- The Shopify API gem allows Ruby developers to programmatically access the admin section of Shopify stores.
9
+ - Creating [online](https://shopify.dev/apps/auth/oauth/access-modes#online-access) or [offline](https://shopify.dev/apps/auth/oauth/access-modes#offline-access) access tokens for the Admin API via OAuth
10
+ - Making requests to the [REST API](https://shopify.dev/api/admin-rest)
11
+ - Making requests to the [GraphQL API](https://shopify.dev/api/admin-graphql)
12
+ - Registering/processing webhooks
10
13
 
11
- The API is implemented as JSON over HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or Collection, has its own URL and is manipulated in isolation. In other words, we’ve tried to make the API follow the REST principles as much as possible.
14
+ In addition to the Admin API, this library also allows querying the [Storefront API](https://shopify.dev/docs/storefront-api).
12
15
 
13
- ## Usage
16
+ You can use this library in any application that has a Ruby backend, since it doesn't rely on any specific framework — you can include it alongside your preferred stack and use the features that you need to build your app.
14
17
 
15
- ### Requirements
18
+ **Note**: These instructions apply to v10 or later of this package. If you're running v9 in your app, you can find the documentation [in this branch](https://github.com/Shopify/shopify-api-ruby/tree/v9).
16
19
 
17
- All API usage happens through Shopify applications, created by either shop owners for their own shops, or by Shopify Partners for use by other shop owners:
20
+ ## Requirements
18
21
 
19
- * Shop owners can create applications for themselves through their own admin: https://docs.shopify.com/api/authentication/creating-a-private-app
20
- * Shopify Partners create applications through their admin: http://app.shopify.com/services/partners
22
+ To follow these usage guides, you will need to:
21
23
 
22
- For more information and detailed documentation about the API visit https://developers.shopify.com/
24
+ - have a working knowledge of ruby and a web framework such as Rails or Sinatra
25
+ - have a Shopify Partner account and development store
26
+ - have an app already set up in your test store or partner account
27
+ - add the URL and the appropriate redirect for your OAuth callback route to your app settings
23
28
 
24
- #### Ruby version
29
+ ## Installation
25
30
 
26
- This gem requires Ruby 2.3.1 as of version 4.3. If you need to use an older Ruby version then update your `Gemfile` to lock onto an older release than 4.3.
31
+ Add the following to your Gemfile:
27
32
 
28
- ### Installation
29
-
30
- Add `shopify_api` to your `Gemfile`:
31
-
32
- ```ruby
33
- gem 'shopify_api'
33
+ ```sh
34
+ gem "shopify_api"
34
35
  ```
35
36
 
36
- Or install via [gem](http://rubygems.org/)
37
+ or use [bundler](https://bundler.io):
37
38
 
38
- ```bash
39
- gem install shopify_api
39
+ ```sh
40
+ bundle add shopify_api
40
41
  ```
41
42
 
42
- ### Getting Started
43
-
44
- ShopifyAPI uses ActiveResource to communicate with the REST web service. ActiveResource has to be configured with a fully authorized URL of a particular store first. To obtain that URL you can follow these steps:
45
-
46
- 1. First create a new application in either the partners admin or your store admin. For a private App you'll need the API_KEY and the PASSWORD otherwise you'll need the API_KEY and SHARED_SECRET.
47
-
48
- If you're not sure how to create a new application in the partner/store admin and/or if you're not sure how to generate the required credentials, you can [read the related shopify docs](https://docs.shopify.com/api/guides/api-credentials) on the same.
49
-
50
- 2. For a private App you just need to set the base site url as follows:
51
-
52
- ```ruby
53
- shop_url = "https://#{API_KEY}:#{PASSWORD}@#{SHOP_NAME}.myshopify.com/admin"
54
- ShopifyAPI::Base.site = shop_url
55
- ```
56
-
57
- That's it, you're done, skip to step 6 and start using the API!
58
-
59
- For a partner app you will need to supply two parameters to the Session class before you instantiate it:
60
-
61
- ```ruby
62
- ShopifyAPI::Session.setup(api_key: API_KEY, secret: SHARED_SECRET)
63
- ```
64
-
65
- Shopify maintains [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2) which securely wraps the OAuth flow and interactions with Shopify (steps 3 and 4 above). Using this gem is the recommended way to use OAuth authentication in your application.
66
-
67
- 3. In order to access a shop's data, apps need an access token from that specific shop. This is a two-stage process. Before interacting with a shop for the first time an app should redirect the user to the following URL:
68
-
69
- ```
70
- GET https://SHOP_NAME.myshopify.com/admin/oauth/authorize
71
- ```
72
-
73
- with the following parameters:
74
-
75
- * ``client_id`` – Required – The API key for your app
76
- * ``scope`` – Required – The list of required scopes (explained here: https://help.shopify.com/api/guides/authentication/oauth#scopes)
77
- * ``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. Note: in older applications, this parameter was optional, and redirected to the Application Callback URL when no other value was specified.
78
- * ``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 important for the security of your application](https://tools.ietf.org/html/rfc6819#section-3.6).
79
- * ``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). This is strongly recommended for embedded apps.
80
-
81
- We've added the create_permission_url method to make this easier, first instantiate your session object:
82
-
83
- ```ruby
84
- session = ShopifyAPI::Session.new("SHOP_NAME.myshopify.com")
85
- ```
86
-
87
- Then call:
88
-
89
- ```ruby
90
- scope = ["write_products"]
91
- permission_url = session.create_permission_url(scope)
92
- ```
93
-
94
- or if you want a custom redirect_uri:
95
-
96
- ```ruby
97
- permission_url = session.create_permission_url(scope, "https://my_redirect_uri.com")
98
- ```
99
-
100
- 4. Once authorized, the shop redirects the owner to the return URL of your application with a parameter named 'code'. This is a temporary token that the app can exchange for a permanent access token.
101
-
102
- Before you proceed, make sure your application performs the following security checks. If any of the checks fails, your application must reject the request with an error, and must not proceed further.
103
-
104
- * Ensure the provided ``state`` is the same one that your application provided to Shopify during Step 3.
105
- * Ensure the provided hmac is valid. The hmac is signed by Shopify as explained below, in the Verification section.
106
- * 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.
43
+ ## Steps to use the Gem
107
44
 
108
- If all security checks pass, the authorization code can be exchanged once for a permanent access token. The exchange is made with a request to the shop.
45
+ ### Setup Shopify Context
109
46
 
110
- ```
111
- POST https://SHOP_NAME.myshopify.com/admin/oauth/access_token
112
- ```
47
+ Start by initializing the `ShopifyAPI::Context` with the parameters of your app by calling `ShopifyAPI::Context.setup` (example below) when your app starts (e.g `application.rb` in a Rails app).
113
48
 
114
- with the following parameters:
49
+ ```ruby
50
+ ShopifyAPI::Context.setup(
51
+ api_key: "<api-key>",
52
+ api_secret_key: "<api-secret-key>",
53
+ host: "<https://application-host-name.com>",
54
+ scope: "read_orders,read_products,etc",
55
+ session_storage: ShopifyAPI::Auth::FileSessionStorage.new, # See more details below
56
+ is_embedded: true, # Set to true if you are building an embedded app
57
+ api_version: "2022-01" # The version of the API you would like to use
58
+ is_private: false, # Set to true if you have an existing private app
59
+ )
60
+ ```
115
61
 
116
- * ``client_id`` Required – The API key for your app
117
- * ``client_secret`` – Required – The shared secret for your app
118
- * ``code`` – Required – The token you received in step 3
62
+ ### Setup a Session Store
119
63
 
120
- and you'll get your permanent access token back in the response.
64
+ In order for the Shopify API gem to properly store sessions it needs an implementation of `ShopifyAPI::Auth::SessionStorage`. We provide one implementation in the gem, `ShopifyAPI::Auth::FileSessionStorage`, which is suitable for testing/development, but isn't intended for production apps. See the [Session Storage doc](docs/usage/session_storage.md) for instructions on how to create a custom session store for a production application.
121
65
 
122
- There is a method to make the request and get the token for you. Pass
123
- all the params received from the previous call and the method will verify
124
- the params, extract the temp code and then request your token:
66
+ Session information would is typically stored in cookies on the browser. However, due to restrictions with modern browsers we highly discourage using cookies for embedded apps. For this reason, an app needs to define a storage implementation that the library can use to store and retrieve a session given its ID. In a non-embedded app this ID will come from a cookie, whereas in an embedded app this ID will come from [App Bridge](https://shopify.dev/apps/tools/app-bridge).
125
67
 
126
- ```ruby
127
- token = session.request_token(params)
128
- ```
68
+ ### Performing OAuth
129
69
 
130
- 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://help.shopify.com/api/guides/authentication/oauth#confirming-installation). If you requested an access token that is associated with a specific user, you can retreive information about this user from the `extra` hash:
70
+ You need to go through OAuth as described [here](https://shopify.dev/apps/auth/oauth) to create sessions for shops using your app.
71
+ The Shopify API gem tries to make this easy by providing functions to begin and complete the OAuth process. See the [Oauth doc](docs/usage/oauth.md) for instructions on how to use these.
131
72
 
132
- ```ruby
133
- # a list of all granted scopes
134
- granted_scopes = session.extra['scope']
135
- # a hash containing the user information
136
- user = session.extra['associated_user']
137
- # the access scopes available to this user, which may be a subset of the access scopes granted to this app.
138
- active_scopes = session.extra['associated_user_scope']
139
- # the time at which this token expires; this is automatically converted from 'expires_in' returned by Shopify
140
- expires_at = session.extra['expires_at']
141
- ```
73
+ ### Register Webhooks and a Webhook Handler
142
74
 
143
- For the security of your application, after retrieving an access token you must validate the following:
144
- 1) The list of scopes in `session.extra['scope']` is the same as you requested.
145
- 2) If you requested an online-mode access token, `session.extra['associated_user']` must be present.
146
- 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.
75
+ If you intend to use webhooks in your application follow the steps in the [Webhooks doc](docs/usage/webhooks.md) for instructions on registering and handling webhooks.
147
76
 
148
- For future sessions simply pass in the `token` and `extra` hash (optional) when creating the session object:
77
+ ### Start Making Authenticated Shopify Requests
149
78
 
150
- ```ruby
151
- session = ShopifyAPI::Session.new("SHOP_NAME.myshopify.com", token, extra)
152
- ```
79
+ Once your app can perform OAuth, it can now make authenticated Shopify API calls using the Admin [REST](docs/usage/rest.md) or [GraphQL](docs/usage/graphql.md) Clients, or the [Storefront API GraphQL Client](docs/usage/graphql_storefront.md).
153
80
 
154
- 5. The session must be activated before use:
81
+ ## Breaking Change Notices
155
82
 
156
- ```ruby
157
- ShopifyAPI::Base.activate_session(session)
158
- ```
83
+ ### Breaking change notice for version 10.0.0
159
84
 
160
- 6. Now you're ready to make authorized API requests to your shop! Data is returned as ActiveResource instances:
85
+ We've rewritten this library for v10, so that it provides all essential features for a Shopify app without depending on the [Active Resource](https://github.com/rails/activeresource) or [graphql-client](https://github.com/github/graphql-client) libraries.
161
86
 
162
- ```ruby
163
- shop = ShopifyAPI::Shop.current
87
+ Here are the main features it provides:
164
88
 
165
- # Get a specific product
166
- product = ShopifyAPI::Product.find(179761209)
89
+ - OAuth support, both with online and offline tokens.
90
+ - Full, transparent support for JWT sessions for embedded apps and cookies for non-embedded ones.
91
+ - Removal of support for 3rd party cookies which are increasingly more difficult to use with modern browsers.
92
+ - Admin API support
93
+ - Auto-generated, version-specific REST resources which are similar to `ActiveResource` (though not identical), that provide methods for all endpoints defined in our [REST API reference](https://shopify.dev/api/admin-rest), as well as direct definition of known attributes.
94
+ - A GraphQL client that doesn't rely on the ActiveResource implementation for REST.
95
+ - Webhook management, with features for adding handlers and registering them with Shopify.
96
+ - Storefront GraphQL API support
167
97
 
168
- # Create a new product
169
- new_product = ShopifyAPI::Product.new
170
- new_product.title = "Burton Custom Freestlye 151"
171
- new_product.product_type = "Snowboard"
172
- new_product.vendor = "Burton"
173
- new_product.save
98
+ Please refer to [the documentation](docs/getting_started.md) in this repository for instructions on how to use each of these components.
174
99
 
175
- # Update a product
176
- product.handle = "burton-snowboard"
177
- product.save
178
- ```
100
+ With this, a lot changed in how apps access the library. Here are the updates you should make when migrating to v10:
179
101
 
180
- Alternatively, you can use #temp to initialize a Session and execute a command which also handles temporarily setting ActiveResource::Base.site:
102
+ - Call `ShopifyAPI::Context.setup` when setting up your app. This class holds global configurations for your app and defines how the library behaves.
103
+ - If not using the `shopify_app` gem, your app needs to provide an implementation of `ShopifyAPI::Auth::SessionStorage` for production. Read more about this [in our documentation](docs/usage/session_storage.md).
104
+ - To change the `User-Agent` header, use `user_agent_prefix` in `ShopifyAPI::Context.setup`.
105
+ - Usages of the `ActiveResource` classes for REST API requests need to be refactored into the new format. You can find detailed examples on how each of the endpoints work in our [reference documentation](https://shopify.dev/api/admin-rest).
181
106
 
182
- ```ruby
183
- products = ShopifyAPI::Session.temp("SHOP_NAME.myshopify.com", token) { ShopifyAPI::Product.find(:all) }
184
- ```
107
+ Please see below a (non-exhaustive) list of common replacements to guide you in your updates, using the `Order` resource as an example.
185
108
 
186
- 7. If you want to work with another shop, you'll first need to clear the session:
109
+ | Before | After |
110
+ | --- | --- |
111
+ | `Order.find(:all, params: {param1: value1})` | `Order.all(param1: value1)` |
112
+ | `Order.find(<id>)` | `Order.find(id: <id>)` |
113
+ | `order = Order.new(<id>)`<br/>`order.post(:close)` | `order = Order.new`<br/>`order.close` |
114
+ | `order = Order.new(<id>)`<br/>`order.delete` | `Order.delete(id: <id>)` |
187
115
 
188
- ```ruby
189
- ShopifyAPI::Base.clear_session
190
- ```
116
+ ## Breaking changes for older versions
191
117
 
192
- ### Console
118
+ See [BREAKING_CHANGES_FOR_OLDER_VERSIONS](BREAKING_CHANGES_FOR_OLDER_VERSIONS.md)
193
119
 
194
- This package also supports the ``shopify-cli`` executable to make it easy to open up an interactive console to use the API with a shop.
120
+ ## Developing this gem
195
121
 
196
- 1. Install the ``shopify_cli`` gem.
122
+ After cloning the repository, you can install the dependencies with bundler:
197
123
 
198
124
  ```bash
199
- gem install shopify_cli
200
- ```
201
-
202
- 2. Obtain a private API key and password to use with your shop (step 2 in "Getting Started")
203
-
204
- 3. Use the ``shopify-cli`` script to save the credentials for the shop to quickly log in.
205
-
206
- ```bash
207
- shopify-cli add yourshopname
208
- ```
209
-
210
- Follow the prompts for the shop domain, API key and password.
211
-
212
- 4. Start the console for the connection.
213
-
214
- ```bash
215
- shopify-cli console
216
- ```
217
-
218
- 5. To see the full list of commands, type:
219
-
220
- ```bash
221
- shopify-cli help
222
- ```
223
-
224
- ## GraphQL
225
-
226
- This library also supports Shopify's new [GraphQL API](https://help.shopify.com/api/graphql-admin-api)
227
- via a dependency on the [graphql-client](https://github.com/github/graphql-client) gem.
228
- The authentication process (steps 1-5 under [Getting Started](#getting-started))
229
- is identical. Once your session is activated, simply construct a new graphql
230
- client and use `parse` and `query` as defined by
231
- [graphql-client](https://github.com/github/graphql-client#defining-queries).
232
-
233
- ```ruby
234
- client = ShopifyAPI::GraphQL.new
235
-
236
- SHOP_NAME_QUERY = client.parse <<-'GRAPHQL'
237
- {
238
- shop {
239
- name
240
- }
241
- }
242
- GRAPHQL
243
-
244
- result = client.query(SHOP_NAME_QUERY)
245
- result.data.shop.name
125
+ bundle install
246
126
  ```
247
127
 
248
- ## Threadsafety
249
-
250
- ActiveResource is threadsafe as of version 4.1 (which works with Rails 4.x and above).
251
-
252
- If you were previously using Shopify's [activeresource fork](https://github.com/shopify/activeresource) then you should remove it and use ActiveResource 4.1.
253
-
254
- ## Using Development Version
255
-
256
- Download the source code and run:
128
+ To run the automated tests:
257
129
 
258
130
  ```bash
259
- bundle install
260
131
  bundle exec rake test
261
132
  ```
262
133
 
263
- ## Additional Resources
264
-
265
- API Reference: https://help.shopify.com/api/reference
266
-
267
- Ask questions on the forums: http://ecommerce.shopify.com/c/shopify-apis-and-technology
134
+ We use [rubocop](https://rubocop.org) to lint/format the code. You can run it with the following command:
268
135
 
269
- ## Copyright
270
-
271
- Copyright (c) 2014 "Shopify Inc.". See LICENSE for details.
136
+ ```bash
137
+ bundle exec rubocop
138
+ ```
data/RELEASING.md ADDED
@@ -0,0 +1,19 @@
1
+ # Releasing ShopifyAPI
2
+
3
+ 1. Before releasing, make sure `sorbet` and related gems are up to date:
4
+ `bundle update sorbet sorbet-runtime sorbet-static tapioca --conservative`
5
+ 1. Check the Semantic Versioning page for info on how to version the new release: http://semver.org
6
+ 1. Update the version of ShopifyAPI in lib/shopify_api/version.rb
7
+ 1. Run `bundle`
8
+ 1. Add a CHANGELOG entry for the new release
9
+ 1. Commit the changes with a commit message like "Packaging for release X.Y.Z"
10
+ 1. Tag the release with the version (Leave REV blank for HEAD or provide a SHA)
11
+ $ git tag vX.Y.Z REV
12
+ 1. Push out the changes
13
+ $ git push
14
+ 1. Push out the tags
15
+ $ git push --tags
16
+ 1. Publish the gem using Shipit
17
+ 1. Consider if the dependency in Shopify/shopify needs updated. It's used only by the tests so is a low risk change.
18
+ Also consider Shopify/shopify_app whose gemspec depends on this.
19
+ We don't need to do this for every release, but we should try to keep them relatively up to date.
data/Rakefile CHANGED
@@ -1,39 +1,23 @@
1
- require 'rake'
2
- require "bundler/gem_tasks"
1
+ # typed: false
2
+ # frozen_string_literal: true
3
3
 
4
- require 'rake/testtask'
5
- Rake::TestTask.new(:test) do |test|
6
- test.libs << 'lib' << 'test'
7
- test.pattern = 'test/**/*_test.rb'
8
- test.verbose = true
9
- end
4
+ require "rake/testtask"
5
+ require "bundler/gem_tasks"
10
6
 
11
- begin
12
- require 'rcov/rcovtask'
13
- Rcov::RcovTask.new do |test|
14
- test.libs << 'test'
15
- test.pattern = 'test/**/*_test.rb'
16
- test.verbose = true
17
- end
18
- rescue LoadError
19
- task :rcov do
20
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
7
+ namespace :test do
8
+ Rake::TestTask.new(:library) do |t|
9
+ t.test_files = FileList["test/**/*_test.rb"].exclude("test/rest/**/*.rb")
21
10
  end
22
- end
23
11
 
24
- task :default => :test
12
+ Rake::TestTask.new(:rest_wrappers) do |t|
13
+ pattern = if ENV.key?("API_VERSION")
14
+ "test/rest/**/#{ENV.fetch("API_VERSION")}/*.rb"
15
+ else
16
+ "test/rest/**/*.rb"
17
+ end
25
18
 
26
- require 'rdoc/task'
27
- Rake::RDocTask.new do |rdoc|
28
- if File.exist?('VERSION.yml')
29
- config = YAML.load(File.read('VERSION.yml'))
30
- version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
31
- else
32
- version = ""
19
+ t.pattern = pattern
33
20
  end
34
-
35
- rdoc.rdoc_dir = 'rdoc'
36
- rdoc.title = "shopify_api #{version}"
37
- rdoc.rdoc_files.include('README*')
38
- rdoc.rdoc_files.include('lib/**/*.rb')
39
21
  end
22
+
23
+ task test: ["test:library"]