shopify_api 9.0.0 → 10.1.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.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -1
- data/.github/ISSUE_TEMPLATE.md +35 -0
- data/.github/dependabot.yml +20 -0
- data/.github/probots.yml +1 -1
- data/.github/pull_request_template.md +20 -0
- data/.github/workflows/build.yml +43 -0
- data/.rubocop.yml +56 -5
- data/CHANGELOG.md +373 -265
- data/CONTRIBUTING.md +4 -3
- data/Gemfile +8 -1
- data/Gemfile.lock +138 -0
- data/LICENSE +2 -2
- data/README.md +135 -339
- data/RELEASING.md +18 -0
- data/Rakefile +15 -36
- data/SECURITY.md +59 -0
- data/bin/tapioca +29 -0
- data/dev.yml +32 -0
- data/docs/README.md +13 -0
- data/docs/getting_started.md +53 -0
- data/docs/issues.md +39 -0
- data/docs/usage/graphql.md +115 -0
- data/docs/usage/graphql_storefront.md +42 -0
- data/docs/usage/oauth.md +105 -0
- data/docs/usage/rest.md +137 -0
- data/docs/usage/session_storage.md +46 -0
- data/docs/usage/webhooks.md +98 -0
- data/lib/shopify_api/admin_versions.rb +20 -0
- data/lib/shopify_api/auth/associated_user.rb +36 -0
- data/lib/shopify_api/auth/auth_scopes.rb +75 -0
- data/lib/shopify_api/auth/file_session_storage.rb +70 -0
- data/lib/shopify_api/auth/jwt_payload.rb +72 -0
- data/lib/shopify_api/auth/oauth/auth_query.rb +47 -0
- data/lib/shopify_api/auth/oauth/session_cookie.rb +28 -0
- data/lib/shopify_api/auth/oauth.rb +129 -0
- data/lib/shopify_api/auth/session.rb +119 -0
- data/lib/shopify_api/auth/session_storage.rb +30 -0
- data/lib/shopify_api/clients/graphql/admin.rb +15 -0
- data/lib/shopify_api/clients/graphql/client.rb +40 -0
- data/lib/shopify_api/clients/graphql/storefront.rb +35 -0
- data/lib/shopify_api/clients/http_client.rb +100 -0
- data/lib/shopify_api/clients/http_request.rb +35 -0
- data/lib/shopify_api/clients/http_response.rb +66 -0
- data/lib/shopify_api/clients/rest/admin.rb +118 -0
- data/lib/shopify_api/context.rb +151 -0
- data/lib/shopify_api/errors/context_not_setup_error.rb +9 -0
- data/lib/shopify_api/errors/cookie_not_found_error.rb +9 -0
- data/lib/shopify_api/errors/http_response_error.rb +19 -0
- data/lib/shopify_api/errors/invalid_graphql_request_error.rb +9 -0
- data/lib/shopify_api/errors/invalid_http_request_error.rb +9 -0
- data/lib/shopify_api/errors/invalid_jwt_token_error.rb +9 -0
- data/lib/shopify_api/errors/invalid_oauth_error.rb +9 -0
- data/lib/shopify_api/errors/invalid_webhook_error.rb +9 -0
- data/lib/shopify_api/errors/invalid_webhook_registration_error.rb +9 -0
- data/lib/shopify_api/errors/max_http_retries_exceeded_error.rb +9 -0
- data/lib/shopify_api/errors/missing_jwt_token_error.rb +9 -0
- data/lib/shopify_api/errors/no_active_session_error.rb +9 -0
- data/lib/shopify_api/errors/no_session_cookie_error.rb +9 -0
- data/lib/shopify_api/errors/no_webhook_handler.rb +9 -0
- data/lib/shopify_api/errors/private_app_error.rb +9 -0
- data/lib/shopify_api/errors/request_access_token_error.rb +9 -0
- data/lib/shopify_api/errors/session_not_found_error.rb +9 -0
- data/lib/shopify_api/errors/session_storage_error.rb +9 -0
- data/lib/shopify_api/errors/unsupported_oauth_error.rb +9 -0
- data/lib/shopify_api/errors/unsupported_version_error.rb +9 -0
- data/lib/shopify_api/errors/webhook_registration_error.rb +9 -0
- data/lib/shopify_api/inflector.rb +17 -0
- data/lib/shopify_api/rest/base.rb +387 -0
- data/lib/shopify_api/rest/base_errors.rb +32 -0
- data/lib/shopify_api/rest/resources/2021_07/abandoned_checkout.rb +189 -0
- data/lib/shopify_api/rest/resources/2021_07/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2021_07/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2021_07/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2021_07/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2021_07/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2021_07/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2021_07/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2021_07/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_07/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2021_07/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2021_07/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_07/carrier_service.rb +116 -0
- data/lib/shopify_api/rest/resources/2021_07/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2021_07/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2021_07/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2021_07/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2021_07/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2021_07/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2021_07/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2021_07/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2021_07/customer.rb +289 -0
- data/lib/shopify_api/rest/resources/2021_07/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2021_07/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2021_07/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2021_07/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2021_07/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2021_07/draft_order.rb +270 -0
- data/lib/shopify_api/rest/resources/2021_07/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment.rb +265 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_order.rb +228 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2021_07/gift_card.rb +207 -0
- data/lib/shopify_api/rest/resources/2021_07/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2021_07/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2021_07/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2021_07/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2021_07/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2021_07/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2021_07/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2021_07/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2021_07/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2021_07/order.rb +470 -0
- data/lib/shopify_api/rest/resources/2021_07/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2021_07/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2021_07/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2021_07/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2021_07/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2021_07/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2021_07/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2021_07/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2021_07/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2021_07/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2021_07/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2021_07/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2021_07/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2021_07/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2021_07/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2021_07/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2021_07/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2021_07/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2021_07/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_07/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2021_07/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2021_07/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2021_07/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2021_07/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2021_07/transaction.rb +178 -0
- data/lib/shopify_api/rest/resources/2021_07/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2021_07/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2021_07/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2021_07/webhook.rb +168 -0
- data/lib/shopify_api/rest/resources/2021_10/abandoned_checkout.rb +189 -0
- data/lib/shopify_api/rest/resources/2021_10/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2021_10/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2021_10/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2021_10/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2021_10/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2021_10/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2021_10/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2021_10/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_10/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2021_10/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2021_10/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_10/carrier_service.rb +116 -0
- data/lib/shopify_api/rest/resources/2021_10/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2021_10/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2021_10/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2021_10/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2021_10/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2021_10/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2021_10/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2021_10/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2021_10/customer.rb +292 -0
- data/lib/shopify_api/rest/resources/2021_10/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2021_10/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2021_10/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2021_10/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2021_10/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2021_10/draft_order.rb +273 -0
- data/lib/shopify_api/rest/resources/2021_10/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment.rb +268 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_order.rb +281 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2021_10/gift_card.rb +207 -0
- data/lib/shopify_api/rest/resources/2021_10/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2021_10/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2021_10/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2021_10/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2021_10/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2021_10/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2021_10/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2021_10/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2021_10/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2021_10/order.rb +473 -0
- data/lib/shopify_api/rest/resources/2021_10/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2021_10/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2021_10/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2021_10/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2021_10/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2021_10/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2021_10/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2021_10/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2021_10/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2021_10/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2021_10/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2021_10/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2021_10/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2021_10/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2021_10/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2021_10/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2021_10/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2021_10/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2021_10/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_10/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2021_10/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2021_10/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2021_10/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2021_10/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2021_10/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2021_10/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2021_10/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2021_10/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2021_10/webhook.rb +168 -0
- data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +189 -0
- data/lib/shopify_api/rest/resources/2022_01/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2022_01/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2022_01/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2022_01/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_01/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_01/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2022_01/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_01/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2022_01/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_01/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/carrier_service.rb +116 -0
- data/lib/shopify_api/rest/resources/2022_01/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_01/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2022_01/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_01/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_01/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2022_01/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2022_01/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_01/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2022_01/customer.rb +292 -0
- data/lib/shopify_api/rest/resources/2022_01/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2022_01/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2022_01/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_01/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_01/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2022_01/draft_order.rb +273 -0
- data/lib/shopify_api/rest/resources/2022_01/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +268 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +281 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2022_01/gift_card.rb +207 -0
- data/lib/shopify_api/rest/resources/2022_01/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_01/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2022_01/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2022_01/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2022_01/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_01/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2022_01/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_01/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2022_01/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_01/order.rb +473 -0
- data/lib/shopify_api/rest/resources/2022_01/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_01/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_01/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2022_01/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2022_01/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_01/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_01/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_01/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_01/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_01/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2022_01/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2022_01/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2022_01/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_01/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_01/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_01/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2022_01/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_01/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_01/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2022_01/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2022_01/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_01/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_01/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2022_01/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2022_01/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_01/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_01/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_01/webhook.rb +168 -0
- data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +189 -0
- data/lib/shopify_api/rest/resources/2022_04/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2022_04/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2022_04/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2022_04/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_04/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_04/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2022_04/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_04/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2022_04/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_04/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/carrier_service.rb +116 -0
- data/lib/shopify_api/rest/resources/2022_04/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_04/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2022_04/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_04/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_04/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2022_04/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2022_04/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_04/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2022_04/customer.rb +295 -0
- data/lib/shopify_api/rest/resources/2022_04/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_04/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_04/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +273 -0
- data/lib/shopify_api/rest/resources/2022_04/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +268 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +284 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +207 -0
- data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_04/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2022_04/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2022_04/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2022_04/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_04/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2022_04/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_04/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2022_04/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_04/order.rb +473 -0
- data/lib/shopify_api/rest/resources/2022_04/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_04/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_04/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2022_04/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2022_04/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_04/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_04/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_04/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_04/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_04/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2022_04/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2022_04/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2022_04/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_04/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_04/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_04/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2022_04/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_04/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_04/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2022_04/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_04/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_04/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2022_04/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2022_04/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_04/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_04/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_04/webhook.rb +168 -0
- data/lib/shopify_api/utils/graphql_proxy.rb +52 -0
- data/lib/shopify_api/utils/hmac_validator.rb +34 -0
- data/lib/shopify_api/utils/http_utils.rb +17 -0
- data/lib/shopify_api/utils/session_utils.rb +135 -0
- data/lib/shopify_api/utils/verifiable_query.rb +18 -0
- data/lib/shopify_api/version.rb +4 -1
- data/lib/shopify_api/webhooks/handler.rb +15 -0
- data/lib/shopify_api/webhooks/register_result.rb +14 -0
- data/lib/shopify_api/webhooks/registration.rb +73 -0
- data/lib/shopify_api/webhooks/registrations/event_bridge.rb +61 -0
- data/lib/shopify_api/webhooks/registrations/http.rb +66 -0
- data/lib/shopify_api/webhooks/registrations/pub_sub.rb +65 -0
- data/lib/shopify_api/webhooks/registry.rb +215 -0
- data/lib/shopify_api/webhooks/request.rb +56 -0
- data/lib/shopify_api.rb +20 -30
- data/service.yml +0 -6
- data/shipit.rubygems.yml +1 -1
- data/shopify_api.gemspec +33 -21
- data/sorbet/config +3 -0
- data/sorbet/rbi/gems/activesupport@7.0.1.rbi +654 -0
- data/sorbet/rbi/gems/addressable@2.8.0.rbi +290 -0
- data/sorbet/rbi/gems/ast@2.4.2.rbi +54 -0
- data/sorbet/rbi/gems/coderay@1.1.3.rbi +8 -0
- data/sorbet/rbi/gems/concurrent-ruby@1.1.9.rbi +2401 -0
- data/sorbet/rbi/gems/crack@0.4.5.rbi +57 -0
- data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +185 -0
- data/sorbet/rbi/gems/fakefs@1.4.1.rbi +571 -0
- data/sorbet/rbi/gems/hash_diff@1.0.0.rbi +47 -0
- data/sorbet/rbi/gems/hashdiff@1.0.1.rbi +82 -0
- data/sorbet/rbi/gems/httparty@0.20.0.rbi +573 -0
- data/sorbet/rbi/gems/i18n@1.8.11.rbi +25 -0
- data/sorbet/rbi/gems/jwt@2.3.0.rbi +437 -0
- data/sorbet/rbi/gems/method_source@1.0.0.rbi +8 -0
- data/sorbet/rbi/gems/mime-types-data@3.2022.0105.rbi +73 -0
- data/sorbet/rbi/gems/mime-types@3.4.1.rbi +295 -0
- data/sorbet/rbi/gems/minitest@5.15.0.rbi +541 -0
- data/sorbet/rbi/gems/mocha@1.13.0.rbi +986 -0
- data/sorbet/rbi/gems/multi_xml@0.6.0.rbi +36 -0
- data/sorbet/rbi/gems/oj@3.13.11.rbi +274 -0
- data/sorbet/rbi/gems/openssl@3.0.0.rbi +581 -0
- data/sorbet/rbi/gems/parallel@1.21.0.rbi +113 -0
- data/sorbet/rbi/gems/parser@3.1.0.0.rbi +1741 -0
- data/sorbet/rbi/gems/pry@0.14.1.rbi +8 -0
- data/sorbet/rbi/gems/public_suffix@4.0.6.rbi +145 -0
- data/sorbet/rbi/gems/rainbow@3.1.1.rbi +157 -0
- data/sorbet/rbi/gems/rake@13.0.6.rbi +814 -0
- data/sorbet/rbi/gems/rbi@0.0.11.rbi +1646 -0
- data/sorbet/rbi/gems/regexp_parser@2.2.0.rbi +1130 -0
- data/sorbet/rbi/gems/rexml@3.2.5.rbi +709 -0
- data/sorbet/rbi/gems/rubocop-ast@1.15.1.rbi +1921 -0
- data/sorbet/rbi/gems/rubocop-shopify@2.4.0.rbi +8 -0
- data/sorbet/rbi/gems/rubocop-sorbet@0.6.5.rbi +295 -0
- data/sorbet/rbi/gems/rubocop@1.25.1.rbi +13507 -0
- data/sorbet/rbi/gems/ruby-progressbar@1.11.0.rbi +405 -0
- data/sorbet/rbi/gems/securerandom@0.1.1.rbi +10 -0
- data/sorbet/rbi/gems/spoom@1.1.8.rbi +1252 -0
- data/sorbet/rbi/gems/tapioca@0.6.3.rbi +1238 -0
- data/sorbet/rbi/gems/thor@1.2.1.rbi +844 -0
- data/sorbet/rbi/gems/tzinfo@2.0.4.rbi +858 -0
- data/sorbet/rbi/gems/unicode-display_width@2.1.0.rbi +26 -0
- data/sorbet/rbi/gems/unparser@0.6.3.rbi +1816 -0
- data/sorbet/rbi/gems/webmock@3.14.0.rbi +683 -0
- data/sorbet/rbi/gems/webrick@1.7.0.rbi +601 -0
- data/sorbet/rbi/gems/yard-sorbet@0.6.1.rbi +199 -0
- data/sorbet/rbi/gems/yard@0.9.27.rbi +4145 -0
- data/sorbet/rbi/gems/zeitwerk@2.5.4.rbi +200 -0
- data/sorbet/rbi/shims/fakefs.rbi +1 -0
- data/sorbet/rbi/shims/openssl.rb +3 -0
- data/sorbet/rbi/todo.rbi +9 -0
- data/sorbet/tapioca/config.yml +4 -0
- data/sorbet/tapioca/require.rb +20 -0
- metadata +521 -353
- data/.document +0 -5
- data/.gitignore +0 -13
- data/.rubocop-https---shopify-github-io-ruby-style-guide-rubocop-yml +0 -1027
- data/.travis.yml +0 -23
- data/CONTRIBUTORS +0 -3
- data/Gemfile_ar41 +0 -5
- data/Gemfile_ar50 +0 -5
- data/Gemfile_ar51 +0 -5
- data/Gemfile_ar_master +0 -5
- data/RELEASING +0 -13
- data/bin/shopify +0 -3
- data/docker-compose.yml +0 -13
- data/docs/graphql.md +0 -191
- data/lib/active_resource/connection_ext.rb +0 -10
- data/lib/active_resource/detailed_log_subscriber.rb +0 -42
- data/lib/active_resource/json_errors.rb +0 -31
- data/lib/shopify_api/api_version.rb +0 -205
- data/lib/shopify_api/connection.rb +0 -35
- data/lib/shopify_api/countable.rb +0 -14
- data/lib/shopify_api/disable_prefix_check.rb +0 -31
- data/lib/shopify_api/events.rb +0 -7
- data/lib/shopify_api/graphql/http_client.rb +0 -22
- data/lib/shopify_api/graphql/railtie.rb +0 -17
- data/lib/shopify_api/graphql/task.rake +0 -100
- data/lib/shopify_api/graphql.rb +0 -79
- data/lib/shopify_api/limits.rb +0 -76
- data/lib/shopify_api/message_enricher.rb +0 -17
- data/lib/shopify_api/meta.rb +0 -15
- data/lib/shopify_api/metafields.rb +0 -20
- data/lib/shopify_api/paginated_collection.rb +0 -69
- data/lib/shopify_api/pagination_link_headers.rb +0 -33
- data/lib/shopify_api/resources/abandoned_checkout.rb +0 -7
- data/lib/shopify_api/resources/access_scope.rb +0 -10
- data/lib/shopify_api/resources/access_token.rb +0 -8
- data/lib/shopify_api/resources/address.rb +0 -4
- data/lib/shopify_api/resources/announcement.rb +0 -4
- data/lib/shopify_api/resources/api_permission.rb +0 -9
- data/lib/shopify_api/resources/application_charge.rb +0 -15
- data/lib/shopify_api/resources/application_credit.rb +0 -4
- data/lib/shopify_api/resources/array_base.rb +0 -13
- data/lib/shopify_api/resources/article.rb +0 -21
- data/lib/shopify_api/resources/asset.rb +0 -100
- data/lib/shopify_api/resources/assigned_fulfillment_order.rb +0 -16
- data/lib/shopify_api/resources/base.rb +0 -162
- data/lib/shopify_api/resources/billing_address.rb +0 -4
- data/lib/shopify_api/resources/blog.rb +0 -10
- data/lib/shopify_api/resources/carrier_service.rb +0 -4
- data/lib/shopify_api/resources/cart.rb +0 -4
- data/lib/shopify_api/resources/checkout.rb +0 -30
- data/lib/shopify_api/resources/collect.rb +0 -6
- data/lib/shopify_api/resources/collection.rb +0 -14
- data/lib/shopify_api/resources/collection_listing.rb +0 -18
- data/lib/shopify_api/resources/collection_publication.rb +0 -10
- data/lib/shopify_api/resources/comment.rb +0 -9
- data/lib/shopify_api/resources/country.rb +0 -4
- data/lib/shopify_api/resources/currency.rb +0 -6
- data/lib/shopify_api/resources/custom_collection.rb +0 -19
- data/lib/shopify_api/resources/customer.rb +0 -29
- data/lib/shopify_api/resources/customer_group.rb +0 -5
- data/lib/shopify_api/resources/customer_invite.rb +0 -4
- data/lib/shopify_api/resources/customer_saved_search.rb +0 -11
- data/lib/shopify_api/resources/discount_code.rb +0 -9
- data/lib/shopify_api/resources/draft_order.rb +0 -14
- data/lib/shopify_api/resources/draft_order_invoice.rb +0 -4
- data/lib/shopify_api/resources/event.rb +0 -8
- data/lib/shopify_api/resources/fulfillment.rb +0 -47
- data/lib/shopify_api/resources/fulfillment_event.rb +0 -15
- data/lib/shopify_api/resources/fulfillment_order.rb +0 -137
- data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +0 -4
- data/lib/shopify_api/resources/fulfillment_request.rb +0 -15
- data/lib/shopify_api/resources/fulfillment_service.rb +0 -4
- data/lib/shopify_api/resources/fulfillment_v2.rb +0 -20
- data/lib/shopify_api/resources/gift_card.rb +0 -7
- data/lib/shopify_api/resources/image.rb +0 -16
- data/lib/shopify_api/resources/inventory_item.rb +0 -6
- data/lib/shopify_api/resources/inventory_level.rb +0 -55
- data/lib/shopify_api/resources/line_item.rb +0 -14
- data/lib/shopify_api/resources/location.rb +0 -8
- data/lib/shopify_api/resources/marketing_event.rb +0 -10
- data/lib/shopify_api/resources/metafield.rb +0 -13
- data/lib/shopify_api/resources/note_attribute.rb +0 -4
- data/lib/shopify_api/resources/option.rb +0 -4
- data/lib/shopify_api/resources/order.rb +0 -43
- data/lib/shopify_api/resources/order_risk.rb +0 -8
- data/lib/shopify_api/resources/page.rb +0 -6
- data/lib/shopify_api/resources/payment.rb +0 -7
- data/lib/shopify_api/resources/payment_details.rb +0 -4
- data/lib/shopify_api/resources/ping.rb +0 -3
- data/lib/shopify_api/resources/policy.rb +0 -7
- data/lib/shopify_api/resources/price_rule.rb +0 -8
- data/lib/shopify_api/resources/product.rb +0 -35
- data/lib/shopify_api/resources/product_listing.rb +0 -16
- data/lib/shopify_api/resources/product_publication.rb +0 -10
- data/lib/shopify_api/resources/province.rb +0 -5
- data/lib/shopify_api/resources/publication.rb +0 -5
- data/lib/shopify_api/resources/receipt.rb +0 -4
- data/lib/shopify_api/resources/recurring_application_charge.rb +0 -31
- data/lib/shopify_api/resources/redirect.rb +0 -4
- data/lib/shopify_api/resources/refund.rb +0 -14
- data/lib/shopify_api/resources/report.rb +0 -4
- data/lib/shopify_api/resources/resource_feedback.rb +0 -19
- data/lib/shopify_api/resources/rule.rb +0 -4
- data/lib/shopify_api/resources/script_tag.rb +0 -4
- data/lib/shopify_api/resources/shipping_address.rb +0 -4
- data/lib/shopify_api/resources/shipping_line.rb +0 -4
- data/lib/shopify_api/resources/shipping_rate.rb +0 -7
- data/lib/shopify_api/resources/shipping_zone.rb +0 -4
- data/lib/shopify_api/resources/shop.rb +0 -25
- data/lib/shopify_api/resources/smart_collection.rb +0 -19
- data/lib/shopify_api/resources/storefront_access_token.rb +0 -4
- data/lib/shopify_api/resources/tax_line.rb +0 -4
- data/lib/shopify_api/resources/tax_service.rb +0 -4
- data/lib/shopify_api/resources/tender_transaction.rb +0 -6
- data/lib/shopify_api/resources/theme.rb +0 -4
- data/lib/shopify_api/resources/transaction.rb +0 -5
- data/lib/shopify_api/resources/usage_charge.rb +0 -5
- data/lib/shopify_api/resources/user.rb +0 -4
- data/lib/shopify_api/resources/variant.rb +0 -8
- data/lib/shopify_api/resources/webhook.rb +0 -4
- data/lib/shopify_api/resources.rb +0 -3
- data/lib/shopify_api/session.rb +0 -172
- data/test/abandoned_checkouts_test.rb +0 -29
- data/test/access_scope_test.rb +0 -23
- data/test/access_token_test.rb +0 -19
- data/test/active_resource/json_errors_test.rb +0 -19
- data/test/api_permission_test.rb +0 -9
- data/test/api_version_test.rb +0 -157
- data/test/application_charge_test.rb +0 -79
- data/test/application_credit_test.rb +0 -35
- data/test/article_test.rb +0 -73
- data/test/asset_test.rb +0 -18
- data/test/assigned_fulfillment_order_test.rb +0 -77
- data/test/base_test.rb +0 -198
- data/test/blog_test.rb +0 -8
- data/test/carrier_service_test.rb +0 -17
- data/test/cart_test.rb +0 -13
- data/test/checkouts_test.rb +0 -77
- data/test/collect_test.rb +0 -9
- data/test/collection_listing_test.rb +0 -79
- data/test/collection_publication_test.rb +0 -40
- data/test/collection_test.rb +0 -49
- data/test/countable_test.rb +0 -13
- data/test/currency_test.rb +0 -21
- data/test/custom_collection_test.rb +0 -9
- data/test/customer_saved_search_test.rb +0 -27
- data/test/customer_test.rb +0 -50
- data/test/detailed_log_subscriber_test.rb +0 -117
- data/test/discount_code_test.rb +0 -53
- data/test/draft_order_test.rb +0 -151
- data/test/fixtures/abandoned_checkout.json +0 -184
- data/test/fixtures/abandoned_checkouts.json +0 -186
- data/test/fixtures/access_scopes.json +0 -10
- data/test/fixtures/access_token_delegate.json +0 -4
- data/test/fixtures/api_versions.json +0 -38
- data/test/fixtures/apis.json +0 -42
- data/test/fixtures/application_charge.json +0 -16
- data/test/fixtures/application_charges.json +0 -57
- data/test/fixtures/application_credit.json +0 -12
- data/test/fixtures/application_credits.json +0 -24
- data/test/fixtures/article.json +0 -15
- data/test/fixtures/articles.json +0 -39
- data/test/fixtures/asset.json +0 -9
- data/test/fixtures/assets.json +0 -136
- data/test/fixtures/assigned_fulfillment_orders.json +0 -78
- data/test/fixtures/authors.json +0 -1
- data/test/fixtures/blog.json +0 -13
- data/test/fixtures/blogs.json +0 -13
- data/test/fixtures/carrier_service.json +0 -9
- data/test/fixtures/carts.json +0 -43
- data/test/fixtures/checkout.json +0 -160
- data/test/fixtures/checkouts.json +0 -162
- data/test/fixtures/collect.json +0 -12
- data/test/fixtures/collection.json +0 -17
- data/test/fixtures/collection_listing.json +0 -11
- data/test/fixtures/collection_listing_product_ids.json +0 -1
- data/test/fixtures/collection_listing_product_ids2.json +0 -1
- data/test/fixtures/collection_listings.json +0 -13
- data/test/fixtures/collection_products.json +0 -47
- data/test/fixtures/collection_publication.json +0 -11
- data/test/fixtures/collection_publications.json +0 -13
- data/test/fixtures/currencies.json +0 -25
- data/test/fixtures/custom_collection.json +0 -17
- data/test/fixtures/customer_invite.json +0 -9
- data/test/fixtures/customer_saved_search.json +0 -9
- data/test/fixtures/customer_saved_search_customers.json +0 -60
- data/test/fixtures/customers.json +0 -59
- data/test/fixtures/customers_account_activation_url.json +0 -3
- data/test/fixtures/customers_search.json +0 -60
- data/test/fixtures/discount_code.json +0 -10
- data/test/fixtures/discount_codes.json +0 -12
- data/test/fixtures/draft_order.json +0 -159
- data/test/fixtures/draft_order_completed.json +0 -159
- data/test/fixtures/draft_order_invoice.json +0 -9
- data/test/fixtures/draft_orders.json +0 -161
- data/test/fixtures/engagement.json +0 -15
- data/test/fixtures/events.json +0 -31
- data/test/fixtures/fulfillment.json +0 -49
- data/test/fixtures/fulfillment_event.json +0 -12
- data/test/fixtures/fulfillment_order.json +0 -38
- data/test/fixtures/fulfillment_order_locations_for_move.json +0 -18
- data/test/fixtures/fulfillment_orders.json +0 -78
- data/test/fixtures/fulfillment_request.json +0 -28
- data/test/fixtures/fulfillment_service.json +0 -10
- data/test/fixtures/fulfillments.json +0 -53
- data/test/fixtures/gift_card.json +0 -20
- data/test/fixtures/gift_card_disabled.json +0 -20
- data/test/fixtures/graphql/2019-10.json +0 -1083
- data/test/fixtures/graphql/dummy_schema.rb +0 -16
- data/test/fixtures/graphql/unstable.json +0 -1083
- data/test/fixtures/image.json +0 -10
- data/test/fixtures/images.json +0 -20
- data/test/fixtures/inventory_level.json +0 -7
- data/test/fixtures/inventory_levels.json +0 -24
- data/test/fixtures/marketing_event.json +0 -28
- data/test/fixtures/marketing_events.json +0 -54
- data/test/fixtures/metafield.json +0 -12
- data/test/fixtures/metafields.json +0 -34
- data/test/fixtures/order.json +0 -297
- data/test/fixtures/order_risk.json +0 -14
- data/test/fixtures/order_risks.json +0 -28
- data/test/fixtures/order_with_properties.json +0 -373
- data/test/fixtures/orders.json +0 -299
- data/test/fixtures/payment.json +0 -7
- data/test/fixtures/payments.json +0 -9
- data/test/fixtures/ping/conversation.json +0 -1
- data/test/fixtures/ping/failed_delivery_confirmation.json +0 -1
- data/test/fixtures/ping/message.json +0 -1
- data/test/fixtures/ping/successful_delivery_confirmation.json +0 -1
- data/test/fixtures/policies.json +0 -8
- data/test/fixtures/price_rule.json +0 -27
- data/test/fixtures/price_rules.json +0 -28
- data/test/fixtures/product.json +0 -116
- data/test/fixtures/product_listing.json +0 -86
- data/test/fixtures/product_listing_product_ids.json +0 -1
- data/test/fixtures/product_listing_product_ids2.json +0 -1
- data/test/fixtures/product_listings.json +0 -174
- data/test/fixtures/product_publication.json +0 -11
- data/test/fixtures/product_publications.json +0 -13
- data/test/fixtures/publications.json +0 -9
- data/test/fixtures/recurring_application_charge.json +0 -22
- data/test/fixtures/recurring_application_charge_adjustment.json +0 -5
- data/test/fixtures/recurring_application_charges.json +0 -106
- data/test/fixtures/redirect.json +0 -7
- data/test/fixtures/refund.json +0 -112
- data/test/fixtures/report.json +0 -9
- data/test/fixtures/reports.json +0 -11
- data/test/fixtures/script_tag.json +0 -10
- data/test/fixtures/script_tags.json +0 -18
- data/test/fixtures/shipping_rates.json +0 -12
- data/test/fixtures/shipping_zones.json +0 -315
- data/test/fixtures/shop.json +0 -26
- data/test/fixtures/smart_collection.json +0 -21
- data/test/fixtures/smart_collection_products.json +0 -155
- data/test/fixtures/storefront_access_token.json +0 -9
- data/test/fixtures/storefront_access_tokens.json +0 -18
- data/test/fixtures/tags.json +0 -1
- data/test/fixtures/tax_service.json +0 -9
- data/test/fixtures/tender_transactions.json +0 -52
- data/test/fixtures/transaction.json +0 -29
- data/test/fixtures/usage_charge.json +0 -11
- data/test/fixtures/usage_charges.json +0 -23
- data/test/fixtures/user.json +0 -21
- data/test/fixtures/users.json +0 -42
- data/test/fixtures/variant.json +0 -23
- data/test/fixtures/variants.json +0 -88
- data/test/fixtures/webhook.json +0 -10
- data/test/fixtures/webhooks.json +0 -18
- data/test/fulfillment_event_test.rb +0 -69
- data/test/fulfillment_order_test.rb +0 -462
- data/test/fulfillment_order_test_helper.rb +0 -7
- data/test/fulfillment_request_test.rb +0 -33
- data/test/fulfillment_service_test.rb +0 -17
- data/test/fulfillment_test.rb +0 -224
- data/test/fulfillment_v2_test.rb +0 -62
- data/test/gift_card_test.rb +0 -22
- data/test/graphql/http_client_test.rb +0 -26
- data/test/graphql_test.rb +0 -147
- data/test/image_test.rb +0 -39
- data/test/inventory_level_test.rb +0 -59
- data/test/lib/webmock_extensions/last_request.rb +0 -16
- data/test/limits_test.rb +0 -38
- data/test/location_test.rb +0 -14
- data/test/marketing_event_test.rb +0 -68
- data/test/message_enricher_test.rb +0 -33
- data/test/meta_test.rb +0 -49
- data/test/metafield_test.rb +0 -46
- data/test/order_risk_test.rb +0 -46
- data/test/order_test.rb +0 -125
- data/test/pagination_test.rb +0 -257
- data/test/payment_test.rb +0 -19
- data/test/policy_test.rb +0 -19
- data/test/price_rule_test.rb +0 -65
- data/test/product_listing_test.rb +0 -97
- data/test/product_publication_test.rb +0 -40
- data/test/product_test.rb +0 -60
- data/test/publication_test.rb +0 -12
- data/test/recurring_application_charge_test.rb +0 -142
- data/test/redirect_test.rb +0 -9
- data/test/refund_test.rb +0 -32
- data/test/report_test.rb +0 -35
- data/test/resource_feedback_test.rb +0 -42
- data/test/script_tag_test.rb +0 -30
- data/test/session_test.rb +0 -366
- data/test/shipping_rate_test.rb +0 -17
- data/test/shipping_zone_test.rb +0 -10
- data/test/shop_test.rb +0 -68
- data/test/smart_collection_test.rb +0 -35
- data/test/storefront_access_token_test.rb +0 -32
- data/test/tax_service_test.rb +0 -9
- data/test/tender_transaction_test.rb +0 -18
- data/test/test_helper.rb +0 -124
- data/test/transaction_test.rb +0 -17
- data/test/usage_charge_test.rb +0 -21
- data/test/user_test.rb +0 -17
- data/test/variant_test.rb +0 -46
- data/test/webhook_test.rb +0 -21
data/README.md
CHANGED
|
@@ -1,18 +1,123 @@
|
|
|
1
|
-
Shopify API
|
|
2
|
-
===========
|
|
3
|
-
[![Version][gem]][gem_url] [](https://travis-ci.org/Shopify/shopify_api)
|
|
1
|
+
# Shopify API Library for Ruby
|
|
4
2
|
|
|
5
|
-
[
|
|
6
|
-
[
|
|
3
|
+
<!-- ![Build Status]() -->
|
|
4
|
+
[](LICENSE)
|
|
5
|
+

|
|
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
|
-
|
|
9
|
+
- Creating [online](https://shopify.dev/concepts/about-apis/authentication#online-access) or [offline](https://shopify.dev/concepts/about-apis/authentication#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
|
-
|
|
14
|
+
In addition to the Admin API, this library also allows querying the [Storefront API](https://shopify.dev/docs/storefront-api).
|
|
12
15
|
|
|
13
|
-
|
|
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
|
-
|
|
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/tree/v9).
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
To follow these usage guides, you will need to:
|
|
23
|
+
|
|
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
|
+
- _OR_ have a test store where you can create a private app
|
|
27
|
+
- have an app already set up in your test store or partner account
|
|
28
|
+
- use [ngrok](https://ngrok.com/download) to create a secure tunnel to your app running on your localhost
|
|
29
|
+
- add the `ngrok` URL and the appropriate redirect for your OAuth callback route to your app settings
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
33
|
+
Add the following to your Gemfile:
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
gem "shopify_api"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
or use [bundler](https://bundler.io):
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
bundle add shopify_api
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Steps to use the Gem
|
|
46
|
+
|
|
47
|
+
### Setup Shopify Context
|
|
48
|
+
|
|
49
|
+
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).
|
|
50
|
+
|
|
51
|
+
```ruby
|
|
52
|
+
ShopifyAPI::Context.setup(
|
|
53
|
+
api_key: "<api-key>",
|
|
54
|
+
api_secret_key: "<api-secret-key>",
|
|
55
|
+
host_name: "<application-host-name>",
|
|
56
|
+
scope: "read_orders,read_products,etc",
|
|
57
|
+
session_storage: ShopifyAPI::Auth::FileSessionStorage.new, # See more details below
|
|
58
|
+
is_embedded: true, # Set to true if you are building an embedded app
|
|
59
|
+
is_private: false, # Set to true if you are building a private app
|
|
60
|
+
api_version: "2022-01" # The version of the API you would like to use
|
|
61
|
+
)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Setup a Session Store
|
|
65
|
+
|
|
66
|
+
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.
|
|
67
|
+
|
|
68
|
+
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).
|
|
69
|
+
|
|
70
|
+
### Performing OAuth
|
|
71
|
+
|
|
72
|
+
Next, unless you are making a private app, you need to go through OAuth as described [here](https://shopify.dev/apps/auth/oauth) to create sessions for shops using your app.
|
|
73
|
+
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.
|
|
74
|
+
|
|
75
|
+
### Register Webhooks and a Webhook Handler
|
|
76
|
+
|
|
77
|
+
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.
|
|
78
|
+
|
|
79
|
+
### Start Making Authenticated Shopify Requests
|
|
80
|
+
|
|
81
|
+
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).
|
|
82
|
+
|
|
83
|
+
## Breaking Change Notices
|
|
84
|
+
|
|
85
|
+
### Breaking change notice for version 10.0.0
|
|
86
|
+
|
|
87
|
+
We've rewritten this library for v10, so that it provides all essential features for a Shopify app without requiring any other packages.
|
|
88
|
+
|
|
89
|
+
Here are the main features it provides:
|
|
90
|
+
|
|
91
|
+
- OAuth support, both with online and offline tokens.
|
|
92
|
+
- Full, transparent support for JWT sessions for embedded apps and cookies for non-embedded ones.
|
|
93
|
+
- Removal of support for 3rd party cookies which are increasingly more difficult to use with modern browsers.
|
|
94
|
+
- Admin API support
|
|
95
|
+
- 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.
|
|
96
|
+
- A GraphQL client that doesn't rely on the ActiveResource implementation for REST.
|
|
97
|
+
- Webhook management, with features for adding handlers and registering them with Shopify.
|
|
98
|
+
- Storefront GraphQL API support
|
|
99
|
+
|
|
100
|
+
Please refer to [the documentation](https://github.com/Shopify/shopify_api/blob/main/docs/getting_started.md) in this repository for instructions on how to use each of these components.
|
|
101
|
+
|
|
102
|
+
With this, a lot changed in how apps access the library. Here are the updates you should make when migrating to v10:
|
|
103
|
+
|
|
104
|
+
- Call `ShopifyAPI::Context.setup` when setting up your app. This class holds global configurations for your app and defines how the library behaves.
|
|
105
|
+
- 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).
|
|
106
|
+
- To change the `User-Agent` header, use `user_agent_prefix` in `ShopifyAPI::Context.setup`.
|
|
107
|
+
- 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).
|
|
108
|
+
|
|
109
|
+
Please see below a (non-exhaustive) list of common replacements to guide you in your updates, using the `Order` resource as an example.
|
|
110
|
+
|
|
111
|
+
| Before | After |
|
|
112
|
+
| --- | --- |
|
|
113
|
+
| `Order.find(:all, params: {param1: value1})` | `Order.all(param1: value1, session:)` |
|
|
114
|
+
| `Order.find(<id>)` | `Order.find(id: <id>, session:)` |
|
|
115
|
+
| `order = Order.new(<id>)`<br/>`order.post(:close)` | `order = Order.new(session:)`<br/>`order.close()` |
|
|
116
|
+
| `order = Order.new(<id>)`<br/>`order.delete` | `Order.delete(id: <id>, session:)` |
|
|
117
|
+
|
|
118
|
+
### Breaking change notice for version 8.0.0
|
|
119
|
+
|
|
120
|
+
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:
|
|
16
121
|
* `ShopifyAPI::ApiVersion::Unstable`
|
|
17
122
|
* `ShopifyAPI::ApiVersion::Release`
|
|
18
123
|
* `ShopifyAPI::ApiVersion.define_version`
|
|
@@ -25,22 +130,21 @@ The following methods on `ApiVersion` have been deprecated:
|
|
|
25
130
|
- `#name` deprecated. Use `#handle`
|
|
26
131
|
- `#stable?` deprecated. Use `#supported?`
|
|
27
132
|
|
|
28
|
-
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 (
|
|
133
|
+
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`.
|
|
29
134
|
|
|
30
|
-
To ensure only known and active versions
|
|
135
|
+
To ensure you're setting only known and active versions, call :
|
|
31
136
|
|
|
32
137
|
```ruby
|
|
33
138
|
ShopifyAPI::ApiVersion.version_lookup_mode = :raise_on_unknown
|
|
34
139
|
ShopifyAPI::ApiVersion.fetch_known_versions
|
|
35
140
|
```
|
|
36
141
|
|
|
37
|
-
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
|
|
142
|
+
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`.
|
|
38
143
|
|
|
144
|
+
### Breaking change notice for version 7.0.0
|
|
39
145
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### Changes to ShopifyAPI::Session
|
|
43
|
-
Session creation requires `api_version` to be set and now uses keyword arguments
|
|
146
|
+
#### Changes to ShopifyAPI::Session
|
|
147
|
+
When creating sessions, `api_version`is now required and uses keyword arguments.
|
|
44
148
|
|
|
45
149
|
To upgrade your use of ShopifyAPI you will need to make the following changes.
|
|
46
150
|
|
|
@@ -51,7 +155,7 @@ is now
|
|
|
51
155
|
```ruby
|
|
52
156
|
ShopifyAPI::Session.new(domain: domain, token: token, api_version: api_version, extras: extras)
|
|
53
157
|
```
|
|
54
|
-
Note `extras` is still optional
|
|
158
|
+
Note `extras` is still optional. The other arguments are required.
|
|
55
159
|
|
|
56
160
|
```ruby
|
|
57
161
|
ShopifyAPI::Session.temp(domain, token, extras) do
|
|
@@ -65,20 +169,20 @@ ShopifyAPI::Session.temp(domain: domain, token: token, api_version: api_version)
|
|
|
65
169
|
end
|
|
66
170
|
```
|
|
67
171
|
|
|
68
|
-
For example if you want to use the `2019-04` version you
|
|
172
|
+
For example, if you want to use the `2019-04` version, you will create a session like this:
|
|
69
173
|
```ruby
|
|
70
174
|
session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: '2019-04')
|
|
71
175
|
```
|
|
72
|
-
if you want to use the `unstable` version you
|
|
176
|
+
if you want to use the `unstable` version, you will create a session like this:
|
|
73
177
|
```ruby
|
|
74
178
|
session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: :unstable)
|
|
75
179
|
```
|
|
76
180
|
|
|
77
|
-
|
|
181
|
+
#### Changes to how to define resources
|
|
78
182
|
|
|
79
183
|
If you have defined or customized Resources, classes that extend `ShopifyAPI::Base`:
|
|
80
|
-
The use of `self.prefix =` has been deprecated you should now use `self.resource =` and not include `/admin`.
|
|
81
|
-
For example if you specified a prefix like this before:
|
|
184
|
+
The use of `self.prefix =` has been deprecated; you should now use `self.resource =` and not include `/admin`.
|
|
185
|
+
For example, if you specified a prefix like this before:
|
|
82
186
|
```ruby
|
|
83
187
|
class MyResource < ShopifyAPI::Base
|
|
84
188
|
self.prefix = '/admin/shop/'
|
|
@@ -91,9 +195,9 @@ class MyResource < ShopifyAPI::Base
|
|
|
91
195
|
end
|
|
92
196
|
```
|
|
93
197
|
|
|
94
|
-
|
|
198
|
+
#### URL construction
|
|
95
199
|
|
|
96
|
-
If you have
|
|
200
|
+
If you have specified any full paths for API calls in find
|
|
97
201
|
```ruby
|
|
98
202
|
def self.current(options={})
|
|
99
203
|
find(:one, options.merge(from: "/admin/shop.#{format.extension}"))
|
|
@@ -109,7 +213,7 @@ def self.current(options = {})
|
|
|
109
213
|
end
|
|
110
214
|
```
|
|
111
215
|
|
|
112
|
-
|
|
216
|
+
#### URLs that have not changed
|
|
113
217
|
|
|
114
218
|
- OAuth URLs for `authorize`, getting the `access_token` from a code, `access_scopes`, and using a `refresh_token` have _not_ changed.
|
|
115
219
|
- get: `/admin/oauth/authorize`
|
|
@@ -117,331 +221,23 @@ end
|
|
|
117
221
|
- get: `/admin/oauth/access_scopes`
|
|
118
222
|
- 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>`
|
|
119
223
|
|
|
120
|
-
## Usage
|
|
121
|
-
|
|
122
|
-
### Requirements
|
|
123
|
-
|
|
124
|
-
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:
|
|
125
|
-
|
|
126
|
-
* Shop owners can create applications for themselves through their own admin: https://docs.shopify.com/api/authentication/creating-a-private-app
|
|
127
|
-
* Shopify Partners create applications through their admin: http://app.shopify.com/services/partners
|
|
128
|
-
|
|
129
|
-
For more information and detailed documentation about the API visit https://developers.shopify.com/
|
|
130
|
-
|
|
131
|
-
#### Ruby version
|
|
132
|
-
|
|
133
|
-
This gem requires Ruby 2.4 as of version 7.0.
|
|
134
|
-
|
|
135
|
-
### Installation
|
|
136
|
-
|
|
137
|
-
Add `shopify_api` to your `Gemfile`:
|
|
138
|
-
|
|
139
|
-
```ruby
|
|
140
|
-
gem 'shopify_api'
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
Or install via [gem](http://rubygems.org/)
|
|
144
|
-
|
|
145
|
-
```bash
|
|
146
|
-
gem install shopify_api
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
### Getting Started
|
|
150
|
-
|
|
151
|
-
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:
|
|
152
|
-
|
|
153
|
-
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.
|
|
154
|
-
|
|
155
|
-
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.
|
|
156
|
-
|
|
157
|
-
2. For a private App you just need to set the base site url as follows:
|
|
158
|
-
|
|
159
|
-
```ruby
|
|
160
|
-
shop_url = "https://#{API_KEY}:#{PASSWORD}@#{SHOP_NAME}.myshopify.com"
|
|
161
|
-
ShopifyAPI::Base.site = shop_url
|
|
162
|
-
ShopifyAPI::Base.api_version = '<version_name>' # find the latest stable api_version [here](https://help.shopify.com/api/versioning)
|
|
163
|
-
```
|
|
164
|
-
|
|
165
|
-
That's it, you're done, skip to step 6 and start using the API!
|
|
166
|
-
|
|
167
|
-
For a partner app you will need to supply two parameters to the Session class before you instantiate it:
|
|
168
|
-
|
|
169
|
-
```ruby
|
|
170
|
-
ShopifyAPI::Session.setup(api_key: API_KEY, secret: SHARED_SECRET)
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
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.
|
|
174
|
-
|
|
175
|
-
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:
|
|
176
|
-
|
|
177
|
-
```
|
|
178
|
-
GET https://SHOP_NAME.myshopify.com/admin/oauth/authorize
|
|
179
|
-
```
|
|
180
|
-
|
|
181
|
-
with the following parameters:
|
|
182
|
-
|
|
183
|
-
* ``client_id`` – Required – The API key for your app
|
|
184
|
-
* ``scope`` – Required – The list of required scopes (explained here: https://help.shopify.com/api/guides/authentication/oauth#scopes)
|
|
185
|
-
* ``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.
|
|
186
|
-
* ``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).
|
|
187
|
-
* ``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.
|
|
188
|
-
|
|
189
|
-
We've added the create_permission_url method to make this easier, first instantiate your session object:
|
|
190
|
-
|
|
191
|
-
```ruby
|
|
192
|
-
shopify_session = ShopifyAPI::Session.new(domain: "SHOP_NAME.myshopify.com", api_version: api_version, token: nil)
|
|
193
|
-
```
|
|
194
|
-
|
|
195
|
-
Then call `create_permission_url` with the redirect_uri you've registered for your application:
|
|
196
|
-
|
|
197
|
-
```ruby
|
|
198
|
-
permission_url = shopify_session.create_permission_url(scope, "https://my_redirect_uri.com")
|
|
199
|
-
```
|
|
200
|
-
|
|
201
|
-
You can also pass a state parameter in the options hash as a last argument:
|
|
202
|
-
|
|
203
|
-
```ruby
|
|
204
|
-
permission_url = shopify_session.create_permission_url(scope, "https://my_redirect_uri.com", { state: "My Nonce" })
|
|
205
|
-
```
|
|
206
|
-
|
|
207
|
-
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.
|
|
208
224
|
|
|
209
|
-
|
|
225
|
+
## Developing this gem
|
|
210
226
|
|
|
211
|
-
|
|
212
|
-
* Ensure the provided hmac is valid. The hmac is signed by Shopify as explained below, in the Verification section.
|
|
213
|
-
* 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.
|
|
214
|
-
|
|
215
|
-
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.
|
|
216
|
-
|
|
217
|
-
```
|
|
218
|
-
POST https://SHOP_NAME.myshopify.com/admin/oauth/access_token
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
with the following parameters:
|
|
222
|
-
|
|
223
|
-
* ``client_id`` – Required – The API key for your app
|
|
224
|
-
* ``client_secret`` – Required – The shared secret for your app
|
|
225
|
-
* ``code`` – Required – The token you received in step 3
|
|
226
|
-
|
|
227
|
-
and you'll get your permanent access token back in the response.
|
|
228
|
-
|
|
229
|
-
There is a method to make the request and get the token for you. Pass
|
|
230
|
-
all the params received from the previous call and the method will verify
|
|
231
|
-
the params, extract the temp code and then request your token:
|
|
232
|
-
|
|
233
|
-
```ruby
|
|
234
|
-
token = shopify_session.request_token(params)
|
|
235
|
-
```
|
|
236
|
-
|
|
237
|
-
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:
|
|
238
|
-
|
|
239
|
-
```ruby
|
|
240
|
-
# a list of all granted scopes
|
|
241
|
-
granted_scopes = shopify_session.extra['scope']
|
|
242
|
-
# a hash containing the user information
|
|
243
|
-
user = shopify_session.extra['associated_user']
|
|
244
|
-
# the access scopes available to this user, which may be a subset of the access scopes granted to this app.
|
|
245
|
-
active_scopes = shopify_session.extra['associated_user_scope']
|
|
246
|
-
# the time at which this token expires; this is automatically converted from 'expires_in' returned by Shopify
|
|
247
|
-
expires_at = shopify_session.extra['expires_at']
|
|
248
|
-
```
|
|
249
|
-
|
|
250
|
-
For the security of your application, after retrieving an access token you must validate the following:
|
|
251
|
-
1) The list of scopes in `shopify_session.extra['scope']` is the same as you requested.
|
|
252
|
-
2) If you requested an online-mode access token, `shopify_session.extra['associated_user']` must be present.
|
|
253
|
-
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.
|
|
254
|
-
|
|
255
|
-
For future sessions simply pass in the `token` and `extra` hash (optional) when creating the session object:
|
|
256
|
-
|
|
257
|
-
```ruby
|
|
258
|
-
shopify_session = ShopifyAPI::Session.new(domain: "SHOP_NAME.myshopify.com", token: token, api_version: api_version, extra: extra)
|
|
259
|
-
```
|
|
260
|
-
|
|
261
|
-
5. The session must be activated before use:
|
|
262
|
-
|
|
263
|
-
```ruby
|
|
264
|
-
ShopifyAPI::Base.activate_session(shopify_session)
|
|
265
|
-
```
|
|
266
|
-
|
|
267
|
-
6. Now you're ready to make authorized API requests to your shop! Data is returned as ActiveResource instances:
|
|
268
|
-
|
|
269
|
-
```ruby
|
|
270
|
-
shop = ShopifyAPI::Shop.current
|
|
271
|
-
|
|
272
|
-
# Get a specific product
|
|
273
|
-
product = ShopifyAPI::Product.find(179761209)
|
|
274
|
-
|
|
275
|
-
# Create a new product
|
|
276
|
-
new_product = ShopifyAPI::Product.new
|
|
277
|
-
new_product.title = "Burton Custom Freestlye 151"
|
|
278
|
-
new_product.product_type = "Snowboard"
|
|
279
|
-
new_product.vendor = "Burton"
|
|
280
|
-
new_product.save
|
|
281
|
-
|
|
282
|
-
# Update a product
|
|
283
|
-
product.handle = "burton-snowboard"
|
|
284
|
-
product.save
|
|
285
|
-
```
|
|
286
|
-
|
|
287
|
-
Alternatively, you can use #temp to initialize a Session and execute a command which also handles temporarily setting ActiveResource::Base.site:
|
|
288
|
-
|
|
289
|
-
```ruby
|
|
290
|
-
products = ShopifyAPI::Session.temp(domain: "SHOP_NAME.myshopify.com", token: token, api_version: api_version) do
|
|
291
|
-
ShopifyAPI::Product.find(:all)
|
|
292
|
-
end
|
|
293
|
-
```
|
|
294
|
-
|
|
295
|
-
7. If you would like to run a small number of calls against a different API version you can use this block syntax:
|
|
296
|
-
|
|
297
|
-
```ruby
|
|
298
|
-
ShopifyAPI::Session.temp(domain: "SHOP_NAME.myshopify.com", token: token, api_version: '2019-04') do
|
|
299
|
-
ShopifyAPI::Product.find(:all) # find call against version `2019-04`
|
|
300
|
-
|
|
301
|
-
ShopifyAPI::Session.with_version(:unstable) do
|
|
302
|
-
ShopifyAPI::Product.find(:all) # find call against version `unstable`
|
|
303
|
-
end
|
|
304
|
-
|
|
305
|
-
ShopifyAPI::Product.find(:all) # find call against version `2019-04`
|
|
306
|
-
end
|
|
307
|
-
```
|
|
308
|
-
|
|
309
|
-
8. If you want to work with another shop, you'll first need to clear the session:
|
|
310
|
-
|
|
311
|
-
```ruby
|
|
312
|
-
ShopifyAPI::Base.clear_session
|
|
313
|
-
```
|
|
314
|
-
|
|
315
|
-
### Console
|
|
316
|
-
|
|
317
|
-
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.
|
|
318
|
-
|
|
319
|
-
1. Install the ``shopify_api_console`` gem.
|
|
227
|
+
After cloning the repository, you can install the dependencies with bundler:
|
|
320
228
|
|
|
321
229
|
```bash
|
|
322
|
-
|
|
323
|
-
```
|
|
324
|
-
|
|
325
|
-
2. Obtain a private API key and password to use with your shop (step 2 in "Getting Started")
|
|
326
|
-
|
|
327
|
-
3. Use the ``shopify-api`` script to save the credentials for the shop to quickly log in.
|
|
328
|
-
|
|
329
|
-
```bash
|
|
330
|
-
shopify-api add yourshopname
|
|
331
|
-
```
|
|
332
|
-
|
|
333
|
-
Follow the prompts for the shop domain, API key and password.
|
|
334
|
-
|
|
335
|
-
4. Start the console for the connection.
|
|
336
|
-
|
|
337
|
-
```bash
|
|
338
|
-
shopify-api console
|
|
339
|
-
```
|
|
340
|
-
|
|
341
|
-
5. To see the full list of commands, type:
|
|
342
|
-
|
|
343
|
-
```bash
|
|
344
|
-
shopify-api help
|
|
345
|
-
```
|
|
346
|
-
|
|
347
|
-
## GraphQL
|
|
348
|
-
|
|
349
|
-
Note: the GraphQL client has improved and changed in version 9.0. See the [client documentation](docs/graphql.md)
|
|
350
|
-
for full usage details and a [migration guide](docs/graphql.md#migration-guide).
|
|
351
|
-
|
|
352
|
-
This library also supports Shopify's [GraphQL Admin API](https://help.shopify.com/api/graphql-admin-api)
|
|
353
|
-
via integration with the [graphql-client](https://github.com/github/graphql-client) gem.
|
|
354
|
-
The authentication process (steps 1-5 under [Getting Started](#getting-started))
|
|
355
|
-
is identical. Once your session is activated, simply access the GraphQL client
|
|
356
|
-
and use `parse` and `query` as defined by
|
|
357
|
-
[graphql-client](https://github.com/github/graphql-client#defining-queries).
|
|
358
|
-
|
|
359
|
-
```ruby
|
|
360
|
-
client = ShopifyAPI::GraphQL.client
|
|
361
|
-
|
|
362
|
-
SHOP_NAME_QUERY = client.parse <<-'GRAPHQL'
|
|
363
|
-
{
|
|
364
|
-
shop {
|
|
365
|
-
name
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
GRAPHQL
|
|
369
|
-
|
|
370
|
-
result = client.query(SHOP_NAME_QUERY)
|
|
371
|
-
result.data.shop.name
|
|
372
|
-
```
|
|
373
|
-
|
|
374
|
-
[GraphQL client documentation](docs/graphql.md)
|
|
375
|
-
|
|
376
|
-
## Threadsafety
|
|
377
|
-
|
|
378
|
-
ActiveResource is threadsafe as of version 4.1 (which works with Rails 4.x and above).
|
|
379
|
-
|
|
380
|
-
If you were previously using Shopify's [activeresource fork](https://github.com/shopify/activeresource) then you should remove it and use ActiveResource 4.1.
|
|
381
|
-
|
|
382
|
-
## Pagination
|
|
383
|
-
|
|
384
|
-
Pagination can occur in one of two ways.
|
|
385
|
-
|
|
386
|
-
Page based pagination
|
|
387
|
-
```ruby
|
|
388
|
-
page = 1
|
|
389
|
-
products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
|
|
390
|
-
process_products(products)
|
|
391
|
-
while(products.count == 50)
|
|
392
|
-
page += 1
|
|
393
|
-
products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
|
|
394
|
-
process_products(products)
|
|
395
|
-
end
|
|
396
|
-
```
|
|
397
|
-
|
|
398
|
-
Page based pagination will be deprecated in the `2019-10` API version, in favor of the second method of pagination:
|
|
399
|
-
|
|
400
|
-
[Relative cursor based pagination](https://help.shopify.com/en/api/guides/paginated-rest-results)
|
|
401
|
-
```ruby
|
|
402
|
-
products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
|
|
403
|
-
process_products(products)
|
|
404
|
-
while products.next_page?
|
|
405
|
-
products = products.fetch_next_page
|
|
406
|
-
process_products(products)
|
|
407
|
-
end
|
|
408
|
-
```
|
|
409
|
-
|
|
410
|
-
If you want cursor based pagination to work across page loads, or want to distribute workload across multiple background jobs, you can use #next_page_info or #previous_page_info methods that return strings:
|
|
411
|
-
|
|
412
|
-
```
|
|
413
|
-
first_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
|
|
414
|
-
second_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50, page_info: first_batch_products.next_page_info })
|
|
415
|
-
...
|
|
230
|
+
bundle install
|
|
416
231
|
```
|
|
417
232
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
## Using Development Version
|
|
421
|
-
|
|
422
|
-
Download the source code and run:
|
|
233
|
+
To run the automated tests:
|
|
423
234
|
|
|
424
235
|
```bash
|
|
425
|
-
bundle install
|
|
426
236
|
bundle exec rake test
|
|
427
237
|
```
|
|
428
238
|
|
|
429
|
-
|
|
430
|
-
```bash
|
|
431
|
-
docker run -it --name shopify_api -v "$PWD:/shopify_api" -w="/shopify_api" ruby:2.6 bundle install
|
|
432
|
-
docker exec -it shopify_api bash
|
|
433
|
-
```
|
|
239
|
+
We use [rubocop](https://rubocop.org) to lint/format the code. You can run it with the following command:
|
|
434
240
|
|
|
435
|
-
or you can even use our automated rake task for docker:
|
|
436
241
|
```bash
|
|
437
|
-
bundle exec
|
|
242
|
+
bundle exec rubocop
|
|
438
243
|
```
|
|
439
|
-
|
|
440
|
-
## Additional Resources
|
|
441
|
-
|
|
442
|
-
* [API Reference](https://help.shopify.com/api/reference)
|
|
443
|
-
* [Ask questions on the forums](http://ecommerce.shopify.com/c/shopify-apis-and-technology)
|
|
444
|
-
|
|
445
|
-
## Copyright
|
|
446
|
-
|
|
447
|
-
Copyright (c) 2014 "Shopify Inc.". See LICENSE for details.
|
data/RELEASING.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Releasing ShopifyAPI
|
|
2
|
+
|
|
3
|
+
1. Before releasing, make sure `sorbet` and `sorbet-runtime` are up to date
|
|
4
|
+
1. Check the Semantic Versioning page for info on how to version the new release: http://semver.org
|
|
5
|
+
1. Update the version of ShopifyAPI in lib/shopify_api/version.rb
|
|
6
|
+
1. Run `bundle`
|
|
7
|
+
1. Add a CHANGELOG entry for the new release
|
|
8
|
+
1. Commit the changes with a commit message like "Packaging for release X.Y.Z"
|
|
9
|
+
1. Tag the release with the version (Leave REV blank for HEAD or provide a SHA)
|
|
10
|
+
$ git tag vX.Y.Z REV
|
|
11
|
+
1. Push out the changes
|
|
12
|
+
$ git push
|
|
13
|
+
1. Push out the tags
|
|
14
|
+
$ git push --tags
|
|
15
|
+
1. Publish the gem using Shipit
|
|
16
|
+
1. Consider if the dependency in Shopify/shopify needs updated. It's used only by the tests so is a low risk change.
|
|
17
|
+
Also consider Shopify/shopify_app whose gemspec depends on this.
|
|
18
|
+
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,44 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# typed: false
|
|
2
|
+
# frozen_string_literal: true
|
|
3
3
|
|
|
4
|
-
require
|
|
5
|
-
|
|
6
|
-
test.libs << 'lib' << 'test'
|
|
7
|
-
test.pattern = 'test/**/*_test.rb'
|
|
8
|
-
test.warning = false
|
|
9
|
-
end
|
|
4
|
+
require "rake/testtask"
|
|
5
|
+
require "bundler/gem_tasks"
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
40
22
|
|
|
41
|
-
task :
|
|
42
|
-
cmd = "docker-compose up -d && docker exec -i -t shopify_api bash"
|
|
43
|
-
exec(cmd, err: File::NULL)
|
|
44
|
-
end
|
|
23
|
+
task test: ["test:library"]
|