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/CHANGELOG.md
CHANGED
|
@@ -1,429 +1,537 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Note: For changes to the API, see https://shopify.dev/changelog?filter=api
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Unreleased
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Version 10.1.0
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
* `fulfillment.cancel`
|
|
9
|
+
- [#933](https://github.com/Shopify/shopify_api/pull/933) Fix syntax of GraphQL query in `Webhooks.get_webhook_id` method by removing extra curly brace
|
|
10
|
+
- [#941](https://github.com/Shopify/shopify_api/pull/941) Fix `to_hash` to return readonly attributes, unless being used for serialize the object for saving - fix issue [#930](https://github.com/Shopify/shopify_api/issues/930)
|
|
11
|
+
- [#959](https://github.com/Shopify/shopify_api/pull/959) Update `LATEST_SUPPORTED_ADMIN_VERSION` to `2022-04` to align it with the current value
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
* `fulfillment_order.fulfillment_request`
|
|
16
|
-
* `fulfillment_order.fulfillment_request.accept`
|
|
17
|
-
* `fulfillment_order.fulfillment_request.reject`
|
|
18
|
-
* `fulfillment_order.cancellation_request`
|
|
19
|
-
* `fulfillment_order.cancellation_request.accept`
|
|
20
|
-
* `fulfillment_order.cancellation_request.reject`
|
|
13
|
+
## Version 10.0.3
|
|
21
14
|
|
|
22
|
-
|
|
15
|
+
### Fixed
|
|
23
16
|
|
|
24
|
-
|
|
17
|
+
- [#935](https://github.com/Shopify/shopify_api/pull/935) Fix issue [#931](https://github.com/Shopify/shopify_api/pull/931), weight of variant should be float
|
|
18
|
+
- [#944](https://github.com/Shopify/shopify_api/pull/944) Deprecated the `validate_shop` method from the JWT class since we can trust the token payload, since it comes from Shopify.
|
|
25
19
|
|
|
26
|
-
|
|
20
|
+
## Version 10.0.2
|
|
27
21
|
|
|
28
|
-
|
|
29
|
-
* Release new Endpoint `collection.products` and `collection.find()` in 2020-01 REST API version [#657](https://github.com/Shopify/shopify_api/pull/657)
|
|
30
|
-
* Enrich 4xx errors with error message from response body [#647](https://github.com/Shopify/shopify_api/pull/647)
|
|
31
|
-
* Make relative cursor based pagination work across page loads [#625](https://github.com/Shopify/shopify_api/pull/625)
|
|
32
|
-
* Small ruby compat fix [#623](https://github.com/Shopify/shopify_api/pull/623)
|
|
33
|
-
* Small consistency change [#621](https://github.com/Shopify/shopify_api/pull/621)
|
|
22
|
+
- [#929](https://github.com/Shopify/shopify_api/pull/929) Aligning sorbet dependencies
|
|
34
23
|
|
|
35
|
-
|
|
24
|
+
## Version 10.0.1
|
|
36
25
|
|
|
37
|
-
|
|
38
|
-
* Remove static Api Version definitions.
|
|
39
|
-
* Introduces Api Version lookup modes: `:define_on_unknown` and `:raise_on_unknown`
|
|
40
|
-
* See [migration notes](README.md#-breaking-change-notice-for-version-800-)
|
|
41
|
-
* `Session.valid?` checks that api_version `is_a?(ApiVersion)` instead of `present?`
|
|
42
|
-
* `ApiVersion::NullVersion` cannot be instantiated and now has a `match?` method [#615](https://github.com/Shopify/shopify_api/pull/615/files)
|
|
43
|
-
* Introduces new Collection endpoint for looking up products without knowing collection type. Only available if ApiVersion is `:unstable` [#609](https://github.com/Shopify/shopify_api/pull/609)
|
|
26
|
+
### Fixed
|
|
44
27
|
|
|
45
|
-
|
|
28
|
+
- [#919](https://github.com/Shopify/shopify_api/pull/919) Allow REST resources to configure a deny list of attributes to be excluded when saving
|
|
29
|
+
- [#920](https://github.com/Shopify/shopify_api/pull/920) Set all values received from the API response to REST resource objects, and allow setting / getting attributes with special characters (such as `?`)
|
|
30
|
+
- [#927](https://github.com/Shopify/shopify_api/pull/927) Fix the `ShopifyAPI::AdminVersions` module for backward compatibility
|
|
46
31
|
|
|
47
|
-
|
|
48
|
-
* Add support for cursor pagination [#594](https://github.com/Shopify/shopify_api/pull/594) and
|
|
49
|
-
[#611](https://github.com/Shopify/shopify_api/pull/611)
|
|
50
|
-
* `ShopifyAPI::Base.api_version` now defaults to `ShopifyAPI::ApiVersion::NullVersion` instead of `nil`. Making requests without first setting an ApiVersion raises `ApiVersionNotSetError` instead of `NoMethodError: undefined method 'construct_api_path' for nil:NilClass'` [#605](https://github.com/Shopify/shopify_api/pull/605)
|
|
32
|
+
## Version 10.0.0
|
|
51
33
|
|
|
52
|
-
|
|
34
|
+
- Major update to the library to provide _all_ essential functions needed for a Shopify app, supporting embedded apps with session tokens. See the [full list of changes](https://github.com/Shopify/shopify_api#breaking-change-notice-for-version-1000) here
|
|
53
35
|
|
|
54
|
-
|
|
36
|
+
## Version 9.5.1
|
|
55
37
|
|
|
56
|
-
|
|
38
|
+
- [#891](https://github.com/Shopify/shopify_api/pull/891) Removed the upper bound on the `activeresource` dependency to allow apps to use the latest version
|
|
57
39
|
|
|
58
|
-
|
|
40
|
+
## Version 9.5
|
|
59
41
|
|
|
60
|
-
|
|
42
|
+
- [#883](https://github.com/Shopify/shopify_api/pull/883) Add support for Ruby 3.0
|
|
61
43
|
|
|
62
|
-
|
|
63
|
-
* Removed `ShopifyAPI::Oauth`.
|
|
64
|
-
* Added api version support, See [migration
|
|
65
|
-
notes](README.md#-breaking-change-notice-for-version-700-)
|
|
66
|
-
* Changed `ShopifyAPI::Session` method signatures from positional to keyword
|
|
67
|
-
arguments, See [migration notes](README.md#-breaking-change-notice-for-version-700-)
|
|
68
|
-
* Add support for newer call limit header `X-Shopify-Shop-Api-Call-Limit`.
|
|
69
|
-
* Removed all Ping resources.
|
|
44
|
+
## Version 9.4.1
|
|
70
45
|
|
|
71
|
-
|
|
46
|
+
- [#847](https://github.com/Shopify/shopify_api/pull/847) Update `create_permission_url` method to use grant_options
|
|
47
|
+
- [#852](https://github.com/Shopify/shopify_api/pull/852) Bumping kramdown to fix a security vulnerability
|
|
72
48
|
|
|
73
|
-
|
|
49
|
+
## Version 9.4.0
|
|
74
50
|
|
|
75
|
-
|
|
51
|
+
- [#843](https://github.com/Shopify/shopify_api/pull/843) Introduce a new `access_scopes` attribute on the Session class.
|
|
52
|
+
- Specifying this in the Session constructor is optional. By default, this attribute returns `nil`.
|
|
76
53
|
|
|
77
|
-
|
|
78
|
-
multi-currency beta program.
|
|
54
|
+
## Version 9.3.0
|
|
79
55
|
|
|
80
|
-
|
|
56
|
+
- [#797](https://github.com/Shopify/shopify_api/pull/797) Release new Endpoint `fulfillment_order.open` and `fulfillment_order.reschedule`.
|
|
81
57
|
|
|
82
|
-
|
|
58
|
+
- [#818](https://github.com/Shopify/shopify_api/pull/818) Avoid depending on ActiveSupport in Sesssion class.
|
|
83
59
|
|
|
84
|
-
|
|
60
|
+
- Freeze all string literals. This should have no impact unless your application is modifying ('monkeypatching') the internals of the library in an unusual way.
|
|
85
61
|
|
|
86
|
-
|
|
62
|
+
- [#802](https://github.com/Shopify/shopify_api/pull/802) Made `inventory_quantity` a read-only field in Variant
|
|
87
63
|
|
|
88
|
-
|
|
64
|
+
- [#821](https://github.com/Shopify/shopify_api/pull/821) Add logging based on environment variable, move log subscriber out of `detailed_log_subscriber`.
|
|
65
|
+
The `ActiveResource::DetailedLogSubscriber` no longer automatically attaches when the class is loaded. If you were previously relying on that behaviour, you'll now need to call `ActiveResource::DetailedLogSubscriber.attach_to(:active_resource_detailed)`. (If using the new `SHOPIFY_LOG_PATH` environment setting then this is handled for you).
|
|
89
66
|
|
|
90
|
-
|
|
67
|
+
- Provide `ApiAccess` value object to encapsulate scope operations [#829](https://github.com/Shopify/shopify_api/pull/829)
|
|
91
68
|
|
|
92
|
-
|
|
69
|
+
## Version 9.2.0
|
|
93
70
|
|
|
94
|
-
|
|
95
|
-
* Added `ShopifyAPI::TenderTransaction` to fetch list of transactions on a shop
|
|
96
|
-
* Fixed bug with X-Shopify-Checkout-Version on ShopifyAPI::Checkout header being applied to all requests
|
|
71
|
+
- Removes the `shopify` binary which will be used by the Shopify CLI
|
|
97
72
|
|
|
98
|
-
|
|
73
|
+
## Version 9.1.1
|
|
99
74
|
|
|
100
|
-
|
|
101
|
-
* Added `ShopifyAPI::ProductPublications`
|
|
102
|
-
* Added `ShopifyAPI::CollectionPublications`
|
|
103
|
-
* Added support for new collection products endpoint from `ShopifyAPI::Collection#products`
|
|
75
|
+
- Make cursor based pagination return relative uri's when fetching next and previous pages. [#726](https://github.com/Shopify/shopify_api/pull/726)
|
|
104
76
|
|
|
105
|
-
|
|
77
|
+
## Version 9.1.0
|
|
106
78
|
|
|
107
|
-
|
|
108
|
-
* See the README for more details
|
|
109
|
-
* Added `ShopifyAPI::AbandonedCheckout`
|
|
110
|
-
* Added support for X-Shopify-Checkout-Version header on `ShopifyAPI::Checkout`
|
|
111
|
-
* Added `ShopifyAPI::ShippingRate`
|
|
112
|
-
* Added `ShopifyAPI::Payment`
|
|
113
|
-
* Added support for `Checkout::complete` endpoint
|
|
114
|
-
* Fixed session handling support for Rails 5.2.1
|
|
79
|
+
- Implements equality operator on `Session` [#714](https://github.com/Shopify/shopify_api/pull/714)
|
|
115
80
|
|
|
116
|
-
|
|
117
|
-
* Added `ShopifyAPI::ApiPermission` resource for uninstalling an application
|
|
118
|
-
* Added a deprecation warning to `ShopifyAPI::OAuth`
|
|
81
|
+
## Version 9.0.4
|
|
119
82
|
|
|
120
|
-
|
|
83
|
+
- Contains [#708](https://github.com/Shopify/shopify_api/pull/708) which is a revert for [#655](https://github.com/shopify/shopify_api/pull/655) due to the deprecated inventory parameters not being removed correctly in some cases
|
|
121
84
|
|
|
122
|
-
|
|
85
|
+
## Version 9.0.3
|
|
123
86
|
|
|
124
|
-
|
|
87
|
+
- We now raise a `ShopifyAPI::ValidationException` exception when clients try to use `Product` and `Variant` with deprecated inventory-related fields in API version `2019-10` or later. [#655](https://github.com/shopify/shopify_api/pull/655) Deprecation and migration information can be found in the following documents:
|
|
88
|
+
- [Product Variant REST API Reference](https://shopify.dev/docs/admin-api/rest/reference/products/product-variant)
|
|
89
|
+
- [Migrate your app to support multiple locations](https://shopify.dev/tutorials/migrate-your-app-to-support-multiple-locations)
|
|
90
|
+
- [Manage product inventory with the Admin API](https://shopify.dev/tutorials/manage-product-inventory-with-admin-api)
|
|
91
|
+
- Added support for the Discount Code API batch endpoints [#701](https://github.com/shopify/shopify_api/pull/701)
|
|
92
|
+
- [Create](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_create-2020-01)
|
|
93
|
+
- [Show](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_show-2020-01)
|
|
94
|
+
- [List](https://shopify.dev/docs/admin-api/rest/reference/discounts/discountcode#batch_discount_codes_index-2020-01)
|
|
95
|
+
- Fix issue in the README to explicitly say clients need to require the `shopify_api` gem [#700](https://github.com/Shopify/shopify_api/pull/700)
|
|
125
96
|
|
|
126
|
-
|
|
127
|
-
* Added `ShopifyAPI::InventoryLevel`
|
|
128
|
-
* Added `#inventory_levels` method to `ShopifyAPI::Location`
|
|
97
|
+
## Version 9.0.2
|
|
129
98
|
|
|
130
|
-
|
|
99
|
+
- Added optional flag passed to `initialize_clients` to prevent from raising the `InvalidSchema` exception [#693](https://github.com/Shopify/shopify_api/pull/693)
|
|
131
100
|
|
|
132
|
-
|
|
101
|
+
## Version 9.0.1
|
|
133
102
|
|
|
134
|
-
|
|
103
|
+
- Added warning message if API version used is unsupported or soon to be unsupported [#685](https://github.com/Shopify/shopify_api/pull/685)
|
|
104
|
+
- Take into account "errors" messages from response body [#677](https://github.com/Shopify/shopify_api/pull/677)
|
|
135
105
|
|
|
136
|
-
|
|
106
|
+
## Version 9.0.0
|
|
137
107
|
|
|
138
|
-
|
|
108
|
+
- Breaking change: Improved GraphQL client [#672](https://github.com/Shopify/shopify_api/pull/672). See the [client docs](docs/graphql.md) for usage and a migration guide.
|
|
139
109
|
|
|
140
|
-
|
|
141
|
-
* Added `ShopifyAPI::DiscountCode`
|
|
110
|
+
- Added options hash to create_permission_url and makes redirect_uri required [#670](https://github.com/Shopify/shopify_api/pull/670)
|
|
142
111
|
|
|
143
|
-
|
|
112
|
+
- Release new Endpoint `fulfillment_order.locations_for_move` in 2020-01 REST API version [#669](https://github.com/Shopify/shopify_api/pull/669)
|
|
144
113
|
|
|
145
|
-
|
|
114
|
+
- Release new Endpoints for `fulfillment` in 2020-01 REST API version [#639](https://github.com/Shopify/shopify_api/pull/639):
|
|
146
115
|
|
|
147
|
-
|
|
116
|
+
- `fulfillment.create` with `line_items_by_fulfillment_order`
|
|
117
|
+
- `fulfillment.update_tracking`
|
|
118
|
+
- `fulfillment.cancel`
|
|
148
119
|
|
|
149
|
-
|
|
150
|
-
* Added support for URL parameter (e.g. limit & page) to metafield operator in ShopifyAPI::Shop
|
|
120
|
+
- Release new Endpoints for `fulfillment_order` in 2020-01 REST API version [#637](https://github.com/Shopify/shopify_api/pull/637):
|
|
151
121
|
|
|
152
|
-
|
|
122
|
+
- `fulfillment_order.fulfillment_request`
|
|
123
|
+
- `fulfillment_order.fulfillment_request.accept`
|
|
124
|
+
- `fulfillment_order.fulfillment_request.reject`
|
|
125
|
+
- `fulfillment_order.cancellation_request`
|
|
126
|
+
- `fulfillment_order.cancellation_request.accept`
|
|
127
|
+
- `fulfillment_order.cancellation_request.reject`
|
|
153
128
|
|
|
154
|
-
|
|
155
|
-
* Fixed a bug related to the non-standard primary key for `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
|
|
129
|
+
- Release new Endpoints `fulfillment_order.move`, `fulfillment_order.cancel` and `fulfillment_order.close` in 2020-01 REST API version [#635](https://github.com/Shopify/shopify_api/pull/635)
|
|
156
130
|
|
|
157
|
-
|
|
131
|
+
- Release new Endpoint `order.fulfillment_orders`, and active resources `AssignedFulfillmentOrder` and `FulfillmentOrder` in 2020-01 REST API version [#633](https://github.com/Shopify/shopify_api/pull/633)
|
|
158
132
|
|
|
159
|
-
|
|
133
|
+
## Version 8.1.0
|
|
160
134
|
|
|
161
|
-
|
|
135
|
+
- Release 2020-01 REST ADMIN API VERSION [#656](https://github.com/Shopify/shopify_api/pull/656)
|
|
136
|
+
- Release new Endpoint `collection.products` and `collection.find()` in 2020-01 REST API version [#657](https://github.com/Shopify/shopify_api/pull/657)
|
|
137
|
+
- Enrich 4xx errors with error message from response body [#647](https://github.com/Shopify/shopify_api/pull/647)
|
|
138
|
+
- Make relative cursor based pagination work across page loads [#625](https://github.com/Shopify/shopify_api/pull/625)
|
|
139
|
+
- Small ruby compat fix [#623](https://github.com/Shopify/shopify_api/pull/623)
|
|
140
|
+
- Small consistency change [#621](https://github.com/Shopify/shopify_api/pull/621)
|
|
162
141
|
|
|
163
|
-
|
|
142
|
+
## Version 8.0.0
|
|
164
143
|
|
|
165
|
-
|
|
144
|
+
- Api Version changes [#600](https://github.com/Shopify/shopify_api/pull/600)
|
|
145
|
+
- Remove static Api Version definitions.
|
|
146
|
+
- Introduces Api Version lookup modes: `:define_on_unknown` and `:raise_on_unknown`
|
|
147
|
+
- See [migration notes](README.md#-breaking-change-notice-for-version-800-)
|
|
148
|
+
- `Session.valid?` checks that api_version `is_a?(ApiVersion)` instead of `present?`
|
|
149
|
+
- `ApiVersion::NullVersion` cannot be instantiated and now has a `match?` method [#615](https://github.com/Shopify/shopify_api/pull/615/files)
|
|
150
|
+
- Introduces new Collection endpoint for looking up products without knowing collection type. Only available if ApiVersion is `:unstable` [#609](https://github.com/Shopify/shopify_api/pull/609)
|
|
166
151
|
|
|
167
|
-
|
|
168
|
-
* Support for Customer#send_invite endpoint
|
|
152
|
+
## Version 7.1.0
|
|
169
153
|
|
|
170
|
-
|
|
154
|
+
- Add 2019-10 to known API versions
|
|
155
|
+
- Add support for cursor pagination [#594](https://github.com/Shopify/shopify_api/pull/594) and
|
|
156
|
+
[#611](https://github.com/Shopify/shopify_api/pull/611)
|
|
157
|
+
- `ShopifyAPI::Base.api_version` now defaults to `ShopifyAPI::ApiVersion::NullVersion` instead of `nil`. Making requests without first setting an ApiVersion raises `ApiVersionNotSetError` instead of `NoMethodError: undefined method 'construct_api_path' for nil:NilClass'` [#605](https://github.com/Shopify/shopify_api/pull/605)
|
|
171
158
|
|
|
172
|
-
|
|
159
|
+
## Version 7.0.2
|
|
173
160
|
|
|
174
|
-
|
|
161
|
+
- Add 2019-07 to known API versions.
|
|
175
162
|
|
|
176
|
-
|
|
163
|
+
## Version 7.0.1
|
|
177
164
|
|
|
178
|
-
|
|
165
|
+
- Support passing version string to `ShopifyAPI::Base.api_version` [#563](https://github.com/Shopify/shopify_api/pull/563)
|
|
179
166
|
|
|
180
|
-
|
|
167
|
+
## Version 7.0.0
|
|
181
168
|
|
|
182
|
-
|
|
169
|
+
- Removed support for `ActiveResouce` < `4.1`.
|
|
170
|
+
- Removed `ShopifyAPI::Oauth`.
|
|
171
|
+
- Added api version support, See [migration
|
|
172
|
+
notes](README.md#-breaking-change-notice-for-version-700-)
|
|
173
|
+
- Changed `ShopifyAPI::Session` method signatures from positional to keyword
|
|
174
|
+
arguments, See [migration notes](README.md#-breaking-change-notice-for-version-700-)
|
|
175
|
+
- Add support for newer call limit header `X-Shopify-Shop-Api-Call-Limit`.
|
|
176
|
+
- Removed all Ping resources.
|
|
183
177
|
|
|
184
|
-
|
|
185
|
-
* Added `ShopifyAPI::DraftOrder`
|
|
186
|
-
* Added `ShopifyAPI::DraftOrderInvoice`
|
|
178
|
+
## Version 6.0.0
|
|
187
179
|
|
|
188
|
-
|
|
180
|
+
- Removed undocumented `protocol` and `port` options from `ShopifyAPI::Session`.
|
|
189
181
|
|
|
190
|
-
|
|
191
|
-
* Added `ShopifyAPI::CollectionListing`
|
|
182
|
+
## Version 5.2.4
|
|
192
183
|
|
|
193
|
-
|
|
184
|
+
- Added `currency` parameter to `ShopifyAPI::Order#capture`. This parameter is required for apps that belong to the
|
|
185
|
+
multi-currency beta program.
|
|
194
186
|
|
|
195
|
-
|
|
187
|
+
## Version 5.2.3
|
|
196
188
|
|
|
197
|
-
|
|
189
|
+
- Update delivery confirmation resource to delivery confirmation details resource.
|
|
198
190
|
|
|
199
|
-
|
|
191
|
+
## Version 5.2.2
|
|
200
192
|
|
|
201
|
-
|
|
193
|
+
- Add delivery confirmation endpoint to Ping resources.
|
|
202
194
|
|
|
203
|
-
|
|
195
|
+
## Version 5.2.1
|
|
204
196
|
|
|
205
|
-
|
|
197
|
+
- Log warning when Shopify indicates deprecated API call was performed
|
|
206
198
|
|
|
207
|
-
|
|
208
|
-
* Use inheritance instead of the deprecated Rails `Module#alias_method_chain`
|
|
199
|
+
## Version 5.2.0
|
|
209
200
|
|
|
210
|
-
|
|
201
|
+
- Added `ShopifyAPI::Currency` to fetch list of supported currencies on a shop
|
|
202
|
+
- Added `ShopifyAPI::TenderTransaction` to fetch list of transactions on a shop
|
|
203
|
+
- Fixed bug with X-Shopify-Checkout-Version on ShopifyAPI::Checkout header being applied to all requests
|
|
211
204
|
|
|
212
|
-
|
|
205
|
+
## Version 5.1.0
|
|
213
206
|
|
|
214
|
-
|
|
207
|
+
- Added `ShopifyAPI::Publications`
|
|
208
|
+
- Added `ShopifyAPI::ProductPublications`
|
|
209
|
+
- Added `ShopifyAPI::CollectionPublications`
|
|
210
|
+
- Added support for new collection products endpoint from `ShopifyAPI::Collection#products`
|
|
215
211
|
|
|
216
|
-
|
|
217
|
-
* Adds Customer#account_activation_url method
|
|
218
|
-
* Adds ability to open a fulfillment.
|
|
212
|
+
## Version 5.0.0
|
|
219
213
|
|
|
220
|
-
|
|
214
|
+
- Breaking change: `ShopifyAPI::Checkout` now maps to the Checkout API, rather than the Abandoned Checkouts API
|
|
215
|
+
- See the README for more details
|
|
216
|
+
- Added `ShopifyAPI::AbandonedCheckout`
|
|
217
|
+
- Added support for X-Shopify-Checkout-Version header on `ShopifyAPI::Checkout`
|
|
218
|
+
- Added `ShopifyAPI::ShippingRate`
|
|
219
|
+
- Added `ShopifyAPI::Payment`
|
|
220
|
+
- Added support for `Checkout::complete` endpoint
|
|
221
|
+
- Fixed session handling support for Rails 5.2.1
|
|
221
222
|
|
|
222
|
-
|
|
223
|
+
## Version 4.13.0
|
|
223
224
|
|
|
224
|
-
|
|
225
|
+
- Added `ShopifyAPI::ApiPermission` resource for uninstalling an application
|
|
226
|
+
- Added a deprecation warning to `ShopifyAPI::OAuth`
|
|
225
227
|
|
|
226
|
-
|
|
228
|
+
## Version 4.12.0
|
|
227
229
|
|
|
228
|
-
|
|
230
|
+
- Added support for the GraphQL API
|
|
229
231
|
|
|
230
|
-
|
|
232
|
+
## Version 4.11.0
|
|
231
233
|
|
|
232
|
-
|
|
234
|
+
- Added `ShopifyAPI::InventoryItem`
|
|
235
|
+
- Added `ShopifyAPI::InventoryLevel`
|
|
236
|
+
- Added `#inventory_levels` method to `ShopifyAPI::Location`
|
|
233
237
|
|
|
234
|
-
|
|
238
|
+
## Version 4.10.0
|
|
235
239
|
|
|
236
|
-
|
|
240
|
+
- Added `ShopifyAPI::AccessScope`
|
|
237
241
|
|
|
238
|
-
|
|
242
|
+
## Version 4.9.1
|
|
239
243
|
|
|
240
|
-
|
|
244
|
+
- Fix a bug with custom properties for orders
|
|
241
245
|
|
|
242
|
-
|
|
246
|
+
## Version 4.9.0
|
|
243
247
|
|
|
244
|
-
|
|
248
|
+
- Added `ShopifyAPI::PriceRule`
|
|
249
|
+
- Added `ShopifyAPI::DiscountCode`
|
|
245
250
|
|
|
246
|
-
|
|
251
|
+
## Version 4.8.0
|
|
247
252
|
|
|
248
|
-
|
|
253
|
+
- Added `add_engagements` to `ShopifyAPI::MarketingEvent`
|
|
249
254
|
|
|
250
|
-
|
|
255
|
+
## Version 4.7.1
|
|
251
256
|
|
|
252
|
-
|
|
257
|
+
- Added support for URL parameter (e.g. limit & page) to ShopifyAPI::Metafields
|
|
258
|
+
- Added support for URL parameter (e.g. limit & page) to metafield operator in ShopifyAPI::Shop
|
|
253
259
|
|
|
254
|
-
|
|
260
|
+
## Version 4.7.0
|
|
255
261
|
|
|
256
|
-
|
|
262
|
+
- Removed the mandatory `application_id` parameter from `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
|
|
263
|
+
- Fixed a bug related to the non-standard primary key for `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
|
|
257
264
|
|
|
258
|
-
|
|
265
|
+
## Version 4.6.0
|
|
259
266
|
|
|
260
|
-
|
|
267
|
+
- Added `ShopifyAPI::Report`
|
|
261
268
|
|
|
262
|
-
|
|
263
|
-
* Add tests for commonly deleted objects, and metafield tests, fix naming error in order_risk_test.rb
|
|
269
|
+
## Version 4.5.0
|
|
264
270
|
|
|
265
|
-
|
|
271
|
+
- Added `ShopifyAPI::MarketingEvent`
|
|
266
272
|
|
|
267
|
-
|
|
273
|
+
## Version 4.4.0
|
|
268
274
|
|
|
269
|
-
|
|
275
|
+
- Added `ShopifyAPI::CustomerInvite`
|
|
276
|
+
- Support for Customer#send_invite endpoint
|
|
270
277
|
|
|
271
|
-
|
|
278
|
+
## Version 4.3.8
|
|
272
279
|
|
|
273
|
-
|
|
280
|
+
- Added `ShopifyAPI::ResourceFeedback`
|
|
274
281
|
|
|
275
|
-
|
|
276
|
-
* Add a specific exception for signature validation failures
|
|
282
|
+
## Version 4.3.7
|
|
277
283
|
|
|
278
|
-
|
|
284
|
+
- Added support for `complete` in `ShopifyAPI::DraftOrder`
|
|
279
285
|
|
|
280
|
-
|
|
281
|
-
* Added optionally using threadsafe ActiveResource (see readme)
|
|
282
|
-
* Fixed bug in validate_signature
|
|
286
|
+
## Version 4.3.6
|
|
283
287
|
|
|
284
|
-
|
|
288
|
+
- Fixed the `customer_saved_search_id` param in `ShopifyAPI::CustomerSavedSearch#customers`.
|
|
285
289
|
|
|
286
|
-
|
|
287
|
-
* Fixed JSON errors handling (#103)
|
|
288
|
-
* Fixed compatibility with Ruby 2.1.x (#83)
|
|
289
|
-
* Fixed getting parent ID from nested resources like Variants (#44)
|
|
290
|
-
* Cleaned up compatibility with ActiveResource 4.0.x
|
|
291
|
-
* Added OrderRisk resource
|
|
292
|
-
* Added FulfillmentService resource
|
|
293
|
-
* Removed discontinued ProductSearchEngine resource
|
|
294
|
-
* Added convenience method Customer#search (#45)
|
|
290
|
+
## Version 4.3.5
|
|
295
291
|
|
|
296
|
-
|
|
292
|
+
- Added support for online mode access tokens, token expiry, and associated_user information.
|
|
293
|
+
- Added `ShopifyAPI::DraftOrder`
|
|
294
|
+
- Added `ShopifyAPI::DraftOrderInvoice`
|
|
297
295
|
|
|
298
|
-
|
|
299
|
-
* Added create_permission_url and request_token helper methods
|
|
300
|
-
* Edited the readme to better describe the getting started procedure
|
|
296
|
+
## Version 4.3.4
|
|
301
297
|
|
|
302
|
-
|
|
298
|
+
- Added `ShopifyAPI::ProductListing`
|
|
299
|
+
- Added `ShopifyAPI::CollectionListing`
|
|
303
300
|
|
|
304
|
-
|
|
301
|
+
## Version 4.3.3
|
|
305
302
|
|
|
306
|
-
|
|
303
|
+
- Added `ShopifyAPI::StorefrontAccessToken`
|
|
307
304
|
|
|
308
|
-
|
|
305
|
+
## Version 4.3.2
|
|
309
306
|
|
|
310
|
-
|
|
307
|
+
- Relax Ruby version requirement to >= `2.0`
|
|
311
308
|
|
|
312
|
-
|
|
309
|
+
## Version 4.3.1
|
|
313
310
|
|
|
314
|
-
|
|
311
|
+
- Support for ShopifyAPI::ApplicationCredit
|
|
315
312
|
|
|
316
|
-
|
|
313
|
+
## Version 4.3.0
|
|
317
314
|
|
|
318
|
-
|
|
315
|
+
- Require Ruby >= `2.3.0`
|
|
316
|
+
- Use inheritance instead of the deprecated Rails `Module#alias_method_chain`
|
|
319
317
|
|
|
320
|
-
|
|
321
|
-
* Adds access to CustomerSavedSearch
|
|
322
|
-
* Adds resources: Order::DefaultAddress, Client::ClientDetails, Announcement
|
|
323
|
-
* Allows access to Articles without a blog_id
|
|
324
|
-
* Moves encode and as_json overrides to ShopifyAPI::Base scope
|
|
325
|
-
* Exposes the `order` action in SmartCollection for general use
|
|
318
|
+
## Version 4.2.2
|
|
326
319
|
|
|
327
|
-
|
|
320
|
+
- Support for AccessToken#delegate endpoint
|
|
328
321
|
|
|
329
|
-
|
|
322
|
+
## Version 4.2.1
|
|
330
323
|
|
|
331
|
-
|
|
324
|
+
- Support for Users and Discounts (Shopify Plus only)
|
|
325
|
+
- Adds Customer#account_activation_url method
|
|
326
|
+
- Adds ability to open a fulfillment.
|
|
332
327
|
|
|
333
|
-
|
|
328
|
+
## Version 4.2.0
|
|
334
329
|
|
|
335
|
-
|
|
330
|
+
- Threadsafety is now compatible with the latest ActiveResource master
|
|
336
331
|
|
|
337
|
-
|
|
332
|
+
## Version 4.1.1
|
|
338
333
|
|
|
339
|
-
|
|
334
|
+
- Added explicit 90 second timeout to `ShopifyAPI::Base`
|
|
340
335
|
|
|
341
|
-
|
|
342
|
-
* Removal of support for Legacy Authentication
|
|
343
|
-
* Added Cart resource
|
|
336
|
+
## Version 4.0.7
|
|
344
337
|
|
|
345
|
-
|
|
338
|
+
- Added `ShippingAPI::ShippingZone`
|
|
346
339
|
|
|
347
|
-
|
|
348
|
-
* Add metafields methods on Customer resource
|
|
349
|
-
* Fix prefix_options on assets returned from Asset.find
|
|
340
|
+
## Version 4.0.6
|
|
350
341
|
|
|
351
|
-
|
|
342
|
+
- Replaced `cancelled` with `expired` in `ShopifyAPI::ApplicationCharge`
|
|
352
343
|
|
|
353
|
-
|
|
354
|
-
* Added detailed logger to help with debugging ActiveResource
|
|
355
|
-
requests/responses
|
|
356
|
-
* Add fulfillment#cancel
|
|
344
|
+
## Version 4.0.5
|
|
357
345
|
|
|
358
|
-
|
|
346
|
+
- Added `pending`, `cancelled`, `accepted`, `declined` helper methods to `ShopifyAPI::ApplicationCharge`
|
|
359
347
|
|
|
360
|
-
|
|
361
|
-
* Remove global limit from ShopifyAPI::Limits
|
|
348
|
+
## Version 4.0.4
|
|
362
349
|
|
|
363
|
-
|
|
350
|
+
- Fixed truthiness for order cancellations. Requests are now sent in the request body and as JSON
|
|
364
351
|
|
|
365
|
-
|
|
366
|
-
* Refactored resources into their own source files
|
|
367
|
-
* Added API limits functionality
|
|
368
|
-
* Patched ActiveResource issue with roots in JSON
|
|
369
|
-
* Added pending, cancelled, accepted, and declined convenience methods to ShopifyAPI::RecurringApplicationCharge
|
|
370
|
-
* ShopifyAPI::Session#temp now available as a convenience method to support temporarily switching to other shops when making calls
|
|
371
|
-
* Fixes to `shopify console` CLI tool
|
|
352
|
+
## Version 4.0.3
|
|
372
353
|
|
|
373
|
-
|
|
354
|
+
- Fixed hmac signature validation for params with delimiters (`&`, `=` or `%`)
|
|
374
355
|
|
|
375
|
-
|
|
356
|
+
## Version 4.0.2
|
|
376
357
|
|
|
377
|
-
|
|
358
|
+
- Verify that the shop domain is a subdomain of .myshopify.com which creating the session
|
|
378
359
|
|
|
379
|
-
|
|
380
|
-
* Added Order#cancel
|
|
381
|
-
* Added Comment#restore, #not_spam
|
|
360
|
+
## Version 4.0.1
|
|
382
361
|
|
|
383
|
-
|
|
362
|
+
- Added `ShopifyAPI::OAuth.revoke` for easy token revocation.
|
|
384
363
|
|
|
385
|
-
|
|
364
|
+
## Version 3.2.6
|
|
386
365
|
|
|
387
|
-
|
|
366
|
+
- Fixed CustomerSavedSearch#customers method to now correctly return only relevant customers
|
|
388
367
|
|
|
389
|
-
|
|
368
|
+
## Version 3.2.5
|
|
390
369
|
|
|
391
|
-
|
|
370
|
+
- More useful error messages for activating nil sessions
|
|
371
|
+
- Add tests for commonly deleted objects, and metafield tests, fix naming error in order_risk_test.rb
|
|
392
372
|
|
|
393
|
-
|
|
394
|
-
* Fix Variant to support accessing both nested variants with a product prefix as well as top level variants directly
|
|
395
|
-
* Add 'grande' to supported product image size variants
|
|
373
|
+
## Version 3.2.4
|
|
396
374
|
|
|
397
|
-
|
|
375
|
+
- No API changes
|
|
398
376
|
|
|
399
|
-
|
|
400
|
-
* Allow custom params when fetching a single Asset
|
|
377
|
+
## Version 3.2.3
|
|
401
378
|
|
|
402
|
-
|
|
379
|
+
- Added pry to the CLI
|
|
403
380
|
|
|
404
|
-
|
|
381
|
+
## Version 3.2.2
|
|
405
382
|
|
|
406
|
-
|
|
383
|
+
- Temporary fix for the CLI
|
|
384
|
+
- Add a specific exception for signature validation failures
|
|
407
385
|
|
|
408
|
-
|
|
386
|
+
## Version 3.2.1
|
|
409
387
|
|
|
410
|
-
|
|
388
|
+
- Added CarrierService resource
|
|
389
|
+
- Added optionally using threadsafe ActiveResource (see readme)
|
|
390
|
+
- Fixed bug in validate_signature
|
|
411
391
|
|
|
412
|
-
|
|
413
|
-
* Remove jeweler stuff
|
|
414
|
-
* Ruby 1.9 encoding fix
|
|
392
|
+
## Version 3.2.0
|
|
415
393
|
|
|
416
|
-
|
|
394
|
+
- in Session::request_token params is no longer optional, you must pass all the params and the method will now extract the code
|
|
395
|
+
- Fixed JSON errors handling (#103)
|
|
396
|
+
- Fixed compatibility with Ruby 2.1.x (#83)
|
|
397
|
+
- Fixed getting parent ID from nested resources like Variants (#44)
|
|
398
|
+
- Cleaned up compatibility with ActiveResource 4.0.x
|
|
399
|
+
- Added OrderRisk resource
|
|
400
|
+
- Added FulfillmentService resource
|
|
401
|
+
- Removed discontinued ProductSearchEngine resource
|
|
402
|
+
- Added convenience method Customer#search (#45)
|
|
417
403
|
|
|
418
|
-
|
|
419
|
-
* Add new 'compact' product image size variant
|
|
420
|
-
* Rails 3 fix: attribute_accessors has to be explicitly included since activesupport 3.0.0
|
|
404
|
+
## Version 3.1.8
|
|
421
405
|
|
|
422
|
-
|
|
406
|
+
- Expose `index` and `show` actions of `Location`
|
|
407
|
+
- Added create_permission_url and request_token helper methods
|
|
408
|
+
- Edited the readme to better describe the getting started procedure
|
|
423
409
|
|
|
424
|
-
|
|
425
|
-
* Add latest changes from Shopify including asset support, token validation and a common base class
|
|
410
|
+
## Version 3.1.7
|
|
426
411
|
|
|
427
|
-
|
|
412
|
+
- Expose `authors` and `tags` action on Article
|
|
428
413
|
|
|
429
|
-
|
|
414
|
+
## Version 3.1.6
|
|
415
|
+
|
|
416
|
+
- Add LineItem::Property resource
|
|
417
|
+
|
|
418
|
+
## Version 3.1.5
|
|
419
|
+
|
|
420
|
+
- Expose `orders` action on Customer
|
|
421
|
+
|
|
422
|
+
## Version 3.1.3
|
|
423
|
+
|
|
424
|
+
- Expose `complete` action on Fulfillment
|
|
425
|
+
|
|
426
|
+
## Version 3.1.2
|
|
427
|
+
|
|
428
|
+
- Includes port in domain URI (when other than http/80 or https/443)
|
|
429
|
+
- Adds access to CustomerSavedSearch
|
|
430
|
+
- Adds resources: Order::DefaultAddress, Client::ClientDetails, Announcement
|
|
431
|
+
- Allows access to Articles without a blog_id
|
|
432
|
+
- Moves encode and as_json overrides to ShopifyAPI::Base scope
|
|
433
|
+
- Exposes the `order` action in SmartCollection for general use
|
|
434
|
+
|
|
435
|
+
## Version 3.0.3
|
|
436
|
+
|
|
437
|
+
- Add a `customers` helper method to the CustomerGroup resource
|
|
438
|
+
|
|
439
|
+
## Version 3.0.2
|
|
440
|
+
|
|
441
|
+
- Brevity in require statements
|
|
442
|
+
|
|
443
|
+
## Version 3.0.1
|
|
444
|
+
|
|
445
|
+
- Fix saving nested resources in ActiveResource 3.1+
|
|
446
|
+
|
|
447
|
+
## Version 3.0.0
|
|
448
|
+
|
|
449
|
+
- Added support for OAuth Authentication
|
|
450
|
+
- Removal of support for Legacy Authentication
|
|
451
|
+
- Added Cart resource
|
|
452
|
+
|
|
453
|
+
## Version 2.3.0
|
|
454
|
+
|
|
455
|
+
- Fix double root bug with ActiveSupport 3.2.0
|
|
456
|
+
- Add metafields methods on Customer resource
|
|
457
|
+
- Fix prefix_options on assets returned from Asset.find
|
|
458
|
+
|
|
459
|
+
## Version 2.2.0
|
|
460
|
+
|
|
461
|
+
- Fix issues with resources that have both direct and namespaced routes
|
|
462
|
+
- Added detailed logger to help with debugging ActiveResource
|
|
463
|
+
requests/responses
|
|
464
|
+
- Add fulfillment#cancel
|
|
465
|
+
|
|
466
|
+
## Version 2.1.0
|
|
467
|
+
|
|
468
|
+
- Fix JSON errors handling
|
|
469
|
+
- Remove global limit from ShopifyAPI::Limits
|
|
470
|
+
|
|
471
|
+
## Version 2.0.0
|
|
472
|
+
|
|
473
|
+
- Bump to 2.0.0 as this release breaks Rails 2 compatibility; we're now officially only supporting Rails 3. Rails 2 devs can follow the rails2 tag in this repo to know where we broke off
|
|
474
|
+
- Refactored resources into their own source files
|
|
475
|
+
- Added API limits functionality
|
|
476
|
+
- Patched ActiveResource issue with roots in JSON
|
|
477
|
+
- Added pending, cancelled, accepted, and declined convenience methods to ShopifyAPI::RecurringApplicationCharge
|
|
478
|
+
- ShopifyAPI::Session#temp now available as a convenience method to support temporarily switching to other shops when making calls
|
|
479
|
+
- Fixes to `shopify console` CLI tool
|
|
480
|
+
|
|
481
|
+
## Version 1.2.5
|
|
482
|
+
|
|
483
|
+
- Fix for Article#comments
|
|
484
|
+
|
|
485
|
+
## Version 1.2.4
|
|
486
|
+
|
|
487
|
+
- Added Article#comments
|
|
488
|
+
- Added Order#cancel
|
|
489
|
+
- Added Comment#restore, #not_spam
|
|
490
|
+
|
|
491
|
+
## Version 1.2.3
|
|
492
|
+
|
|
493
|
+
- Added Customer, CustomerGroup support
|
|
494
|
+
|
|
495
|
+
## Version 1.2.2
|
|
496
|
+
|
|
497
|
+
- Added ScriptTag support
|
|
498
|
+
|
|
499
|
+
## Version 1.2.1
|
|
500
|
+
|
|
501
|
+
- Allow abbreviated names for all commands like rails does, e.g. 'shopify c' instead of 'shopify console'
|
|
502
|
+
- Fix Variant to support accessing both nested variants with a product prefix as well as top level variants directly
|
|
503
|
+
- Add 'grande' to supported product image size variants
|
|
504
|
+
|
|
505
|
+
## Version 1.2.0
|
|
506
|
+
|
|
507
|
+
- Command-line interface
|
|
508
|
+
- Allow custom params when fetching a single Asset
|
|
509
|
+
|
|
510
|
+
## Version 1.1.3 (November 4, 2010)
|
|
511
|
+
|
|
512
|
+
- Add ProductSearchEngines resource
|
|
513
|
+
|
|
514
|
+
## Version 1.1.2 (October 20, 2010)
|
|
515
|
+
|
|
516
|
+
- Fix for users of ActiveResource 3.x
|
|
517
|
+
|
|
518
|
+
## Version 1.1.1 (October 5, 2010)
|
|
519
|
+
|
|
520
|
+
- Remove hard coded xml formatting in API calls
|
|
521
|
+
- Remove jeweler stuff
|
|
522
|
+
- Ruby 1.9 encoding fix
|
|
523
|
+
|
|
524
|
+
## Version 1.1.0 (September 24, 2010)
|
|
525
|
+
|
|
526
|
+
- Add new Events API for Shop, Order, Product, CustomCollection, SmartCollection, Page, Blog and Article
|
|
527
|
+
- Add new 'compact' product image size variant
|
|
528
|
+
- Rails 3 fix: attribute_accessors has to be explicitly included since activesupport 3.0.0
|
|
529
|
+
|
|
530
|
+
## Version 1.0.6
|
|
531
|
+
|
|
532
|
+
- Add metafields
|
|
533
|
+
- Add latest changes from Shopify including asset support, token validation and a common base class
|
|
534
|
+
|
|
535
|
+
## Version 1.0.0
|
|
536
|
+
|
|
537
|
+
- extracting ShopifyAPI from Shopify into Gem
|