shopify_api 9.5.1 → 10.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -1
- data/.github/ISSUE_TEMPLATE.md +1 -2
- 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 +18 -19
- data/.rubocop.yml +49 -18
- data/CHANGELOG.md +3 -1
- data/CONTRIBUTING.md +4 -3
- data/Gemfile +6 -4
- data/Gemfile.lock +104 -117
- data/LICENSE +2 -2
- data/README.md +92 -494
- data/RELEASING +1 -1
- data/Rakefile +14 -46
- data/SECURITY.md +2 -2
- data/bin/tapioca +29 -0
- data/dev.yml +22 -1
- 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 +15 -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 +69 -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 +318 -0
- data/lib/shopify_api/rest/base_errors.rb +32 -0
- data/lib/shopify_api/rest/resources/2021_07/abandoned_checkout.rb +186 -0
- data/lib/shopify_api/rest/resources/2021_07/access_scope.rb +54 -0
- data/lib/shopify_api/rest/resources/2021_07/android_pay_key.rb +73 -0
- data/lib/shopify_api/rest/resources/2021_07/apple_pay_certificate.rb +101 -0
- data/lib/shopify_api/rest/resources/2021_07/application_charge.rb +100 -0
- data/lib/shopify_api/rest/resources/2021_07/application_credit.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_07/article.rb +254 -0
- data/lib/shopify_api/rest/resources/2021_07/asset.rb +114 -0
- data/lib/shopify_api/rest/resources/2021_07/assigned_fulfillment_order.rb +75 -0
- data/lib/shopify_api/rest/resources/2021_07/balance.rb +46 -0
- data/lib/shopify_api/rest/resources/2021_07/blog.rb +158 -0
- data/lib/shopify_api/rest/resources/2021_07/cancellation_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_07/carrier_service.rb +112 -0
- data/lib/shopify_api/rest/resources/2021_07/checkout.rb +205 -0
- data/lib/shopify_api/rest/resources/2021_07/collect.rb +138 -0
- data/lib/shopify_api/rest/resources/2021_07/collection.rb +106 -0
- data/lib/shopify_api/rest/resources/2021_07/collection_listing.rb +151 -0
- data/lib/shopify_api/rest/resources/2021_07/comment.rb +279 -0
- data/lib/shopify_api/rest/resources/2021_07/country.rb +133 -0
- data/lib/shopify_api/rest/resources/2021_07/currency.rb +53 -0
- data/lib/shopify_api/rest/resources/2021_07/custom_collection.rb +183 -0
- data/lib/shopify_api/rest/resources/2021_07/customer.rb +285 -0
- data/lib/shopify_api/rest/resources/2021_07/customer_address.rb +197 -0
- data/lib/shopify_api/rest/resources/2021_07/customer_saved_search.rb +165 -0
- data/lib/shopify_api/rest/resources/2021_07/deprecated_api_call.rb +53 -0
- data/lib/shopify_api/rest/resources/2021_07/discount_code.rb +215 -0
- data/lib/shopify_api/rest/resources/2021_07/dispute.rb +107 -0
- data/lib/shopify_api/rest/resources/2021_07/draft_order.rb +266 -0
- data/lib/shopify_api/rest/resources/2021_07/event.rb +144 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment.rb +191 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_event.rb +162 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_order.rb +224 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_07/fulfillment_service.rb +126 -0
- data/lib/shopify_api/rest/resources/2021_07/gift_card.rb +203 -0
- data/lib/shopify_api/rest/resources/2021_07/gift_card_adjustment.rb +114 -0
- data/lib/shopify_api/rest/resources/2021_07/image.rb +153 -0
- data/lib/shopify_api/rest/resources/2021_07/inventory_item.rb +104 -0
- data/lib/shopify_api/rest/resources/2021_07/inventory_level.rb +175 -0
- data/lib/shopify_api/rest/resources/2021_07/location.rb +163 -0
- data/lib/shopify_api/rest/resources/2021_07/locations_for_move.rb +52 -0
- data/lib/shopify_api/rest/resources/2021_07/marketing_event.rb +205 -0
- data/lib/shopify_api/rest/resources/2021_07/metafield.rb +338 -0
- data/lib/shopify_api/rest/resources/2021_07/mobile_platform_application.rb +106 -0
- data/lib/shopify_api/rest/resources/2021_07/order.rb +466 -0
- data/lib/shopify_api/rest/resources/2021_07/order_risk.rb +131 -0
- data/lib/shopify_api/rest/resources/2021_07/page.rb +190 -0
- data/lib/shopify_api/rest/resources/2021_07/payment.rb +136 -0
- data/lib/shopify_api/rest/resources/2021_07/payment_gateway.rb +139 -0
- data/lib/shopify_api/rest/resources/2021_07/payment_transaction.rb +103 -0
- data/lib/shopify_api/rest/resources/2021_07/payout.rb +93 -0
- data/lib/shopify_api/rest/resources/2021_07/policy.rb +65 -0
- data/lib/shopify_api/rest/resources/2021_07/price_rule.rb +219 -0
- data/lib/shopify_api/rest/resources/2021_07/product.rb +219 -0
- data/lib/shopify_api/rest/resources/2021_07/product_listing.rb +192 -0
- data/lib/shopify_api/rest/resources/2021_07/product_resource_feedback.rb +84 -0
- data/lib/shopify_api/rest/resources/2021_07/province.rb +128 -0
- data/lib/shopify_api/rest/resources/2021_07/recurring_application_charge.rb +163 -0
- data/lib/shopify_api/rest/resources/2021_07/redirect.rb +135 -0
- data/lib/shopify_api/rest/resources/2021_07/refund.rb +147 -0
- data/lib/shopify_api/rest/resources/2021_07/report.rb +117 -0
- data/lib/shopify_api/rest/resources/2021_07/resource_feedback.rb +69 -0
- data/lib/shopify_api/rest/resources/2021_07/script_tag.rb +151 -0
- data/lib/shopify_api/rest/resources/2021_07/shipping_zone.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_07/shop.rb +214 -0
- data/lib/shopify_api/rest/resources/2021_07/smart_collection.rb +212 -0
- data/lib/shopify_api/rest/resources/2021_07/storefront_access_token.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_07/tender_transaction.rb +89 -0
- data/lib/shopify_api/rest/resources/2021_07/theme.rb +116 -0
- data/lib/shopify_api/rest/resources/2021_07/transaction.rb +174 -0
- data/lib/shopify_api/rest/resources/2021_07/usage_charge.rb +93 -0
- data/lib/shopify_api/rest/resources/2021_07/user.rb +134 -0
- data/lib/shopify_api/rest/resources/2021_07/variant.rb +204 -0
- data/lib/shopify_api/rest/resources/2021_07/webhook.rb +164 -0
- data/lib/shopify_api/rest/resources/2021_10/abandoned_checkout.rb +186 -0
- data/lib/shopify_api/rest/resources/2021_10/access_scope.rb +54 -0
- data/lib/shopify_api/rest/resources/2021_10/android_pay_key.rb +73 -0
- data/lib/shopify_api/rest/resources/2021_10/apple_pay_certificate.rb +101 -0
- data/lib/shopify_api/rest/resources/2021_10/application_charge.rb +100 -0
- data/lib/shopify_api/rest/resources/2021_10/application_credit.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_10/article.rb +254 -0
- data/lib/shopify_api/rest/resources/2021_10/asset.rb +114 -0
- data/lib/shopify_api/rest/resources/2021_10/assigned_fulfillment_order.rb +75 -0
- data/lib/shopify_api/rest/resources/2021_10/balance.rb +46 -0
- data/lib/shopify_api/rest/resources/2021_10/blog.rb +158 -0
- data/lib/shopify_api/rest/resources/2021_10/cancellation_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_10/carrier_service.rb +112 -0
- data/lib/shopify_api/rest/resources/2021_10/checkout.rb +205 -0
- data/lib/shopify_api/rest/resources/2021_10/collect.rb +138 -0
- data/lib/shopify_api/rest/resources/2021_10/collection.rb +106 -0
- data/lib/shopify_api/rest/resources/2021_10/collection_listing.rb +151 -0
- data/lib/shopify_api/rest/resources/2021_10/comment.rb +279 -0
- data/lib/shopify_api/rest/resources/2021_10/country.rb +133 -0
- data/lib/shopify_api/rest/resources/2021_10/currency.rb +53 -0
- data/lib/shopify_api/rest/resources/2021_10/custom_collection.rb +183 -0
- data/lib/shopify_api/rest/resources/2021_10/customer.rb +288 -0
- data/lib/shopify_api/rest/resources/2021_10/customer_address.rb +197 -0
- data/lib/shopify_api/rest/resources/2021_10/customer_saved_search.rb +165 -0
- data/lib/shopify_api/rest/resources/2021_10/deprecated_api_call.rb +53 -0
- data/lib/shopify_api/rest/resources/2021_10/discount_code.rb +215 -0
- data/lib/shopify_api/rest/resources/2021_10/dispute.rb +107 -0
- data/lib/shopify_api/rest/resources/2021_10/draft_order.rb +269 -0
- data/lib/shopify_api/rest/resources/2021_10/event.rb +144 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment.rb +194 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_event.rb +162 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_order.rb +277 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_10/fulfillment_service.rb +126 -0
- data/lib/shopify_api/rest/resources/2021_10/gift_card.rb +203 -0
- data/lib/shopify_api/rest/resources/2021_10/gift_card_adjustment.rb +114 -0
- data/lib/shopify_api/rest/resources/2021_10/image.rb +153 -0
- data/lib/shopify_api/rest/resources/2021_10/inventory_item.rb +104 -0
- data/lib/shopify_api/rest/resources/2021_10/inventory_level.rb +175 -0
- data/lib/shopify_api/rest/resources/2021_10/location.rb +163 -0
- data/lib/shopify_api/rest/resources/2021_10/locations_for_move.rb +52 -0
- data/lib/shopify_api/rest/resources/2021_10/marketing_event.rb +205 -0
- data/lib/shopify_api/rest/resources/2021_10/metafield.rb +338 -0
- data/lib/shopify_api/rest/resources/2021_10/mobile_platform_application.rb +106 -0
- data/lib/shopify_api/rest/resources/2021_10/order.rb +469 -0
- data/lib/shopify_api/rest/resources/2021_10/order_risk.rb +131 -0
- data/lib/shopify_api/rest/resources/2021_10/page.rb +190 -0
- data/lib/shopify_api/rest/resources/2021_10/payment.rb +136 -0
- data/lib/shopify_api/rest/resources/2021_10/payment_gateway.rb +139 -0
- data/lib/shopify_api/rest/resources/2021_10/payment_transaction.rb +103 -0
- data/lib/shopify_api/rest/resources/2021_10/payout.rb +93 -0
- data/lib/shopify_api/rest/resources/2021_10/policy.rb +65 -0
- data/lib/shopify_api/rest/resources/2021_10/price_rule.rb +219 -0
- data/lib/shopify_api/rest/resources/2021_10/product.rb +219 -0
- data/lib/shopify_api/rest/resources/2021_10/product_listing.rb +192 -0
- data/lib/shopify_api/rest/resources/2021_10/product_resource_feedback.rb +84 -0
- data/lib/shopify_api/rest/resources/2021_10/province.rb +128 -0
- data/lib/shopify_api/rest/resources/2021_10/recurring_application_charge.rb +163 -0
- data/lib/shopify_api/rest/resources/2021_10/redirect.rb +135 -0
- data/lib/shopify_api/rest/resources/2021_10/refund.rb +147 -0
- data/lib/shopify_api/rest/resources/2021_10/report.rb +117 -0
- data/lib/shopify_api/rest/resources/2021_10/resource_feedback.rb +69 -0
- data/lib/shopify_api/rest/resources/2021_10/script_tag.rb +151 -0
- data/lib/shopify_api/rest/resources/2021_10/shipping_zone.rb +79 -0
- data/lib/shopify_api/rest/resources/2021_10/shop.rb +214 -0
- data/lib/shopify_api/rest/resources/2021_10/smart_collection.rb +212 -0
- data/lib/shopify_api/rest/resources/2021_10/storefront_access_token.rb +83 -0
- data/lib/shopify_api/rest/resources/2021_10/tender_transaction.rb +89 -0
- data/lib/shopify_api/rest/resources/2021_10/theme.rb +116 -0
- data/lib/shopify_api/rest/resources/2021_10/transaction.rb +177 -0
- data/lib/shopify_api/rest/resources/2021_10/usage_charge.rb +93 -0
- data/lib/shopify_api/rest/resources/2021_10/user.rb +134 -0
- data/lib/shopify_api/rest/resources/2021_10/variant.rb +204 -0
- data/lib/shopify_api/rest/resources/2021_10/webhook.rb +164 -0
- data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +186 -0
- data/lib/shopify_api/rest/resources/2022_01/access_scope.rb +54 -0
- data/lib/shopify_api/rest/resources/2022_01/android_pay_key.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_01/apple_pay_certificate.rb +101 -0
- data/lib/shopify_api/rest/resources/2022_01/application_charge.rb +100 -0
- data/lib/shopify_api/rest/resources/2022_01/application_credit.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/article.rb +254 -0
- data/lib/shopify_api/rest/resources/2022_01/asset.rb +114 -0
- data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +75 -0
- data/lib/shopify_api/rest/resources/2022_01/balance.rb +46 -0
- data/lib/shopify_api/rest/resources/2022_01/blog.rb +158 -0
- data/lib/shopify_api/rest/resources/2022_01/cancellation_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_01/carrier_service.rb +112 -0
- data/lib/shopify_api/rest/resources/2022_01/checkout.rb +205 -0
- data/lib/shopify_api/rest/resources/2022_01/collect.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_01/collection.rb +106 -0
- data/lib/shopify_api/rest/resources/2022_01/collection_listing.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_01/comment.rb +279 -0
- data/lib/shopify_api/rest/resources/2022_01/country.rb +133 -0
- data/lib/shopify_api/rest/resources/2022_01/currency.rb +53 -0
- data/lib/shopify_api/rest/resources/2022_01/custom_collection.rb +183 -0
- data/lib/shopify_api/rest/resources/2022_01/customer.rb +288 -0
- data/lib/shopify_api/rest/resources/2022_01/customer_address.rb +197 -0
- data/lib/shopify_api/rest/resources/2022_01/customer_saved_search.rb +165 -0
- data/lib/shopify_api/rest/resources/2022_01/deprecated_api_call.rb +53 -0
- data/lib/shopify_api/rest/resources/2022_01/discount_code.rb +215 -0
- data/lib/shopify_api/rest/resources/2022_01/dispute.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_01/draft_order.rb +269 -0
- data/lib/shopify_api/rest/resources/2022_01/event.rb +144 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_event.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +277 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_service.rb +126 -0
- data/lib/shopify_api/rest/resources/2022_01/gift_card.rb +203 -0
- data/lib/shopify_api/rest/resources/2022_01/gift_card_adjustment.rb +114 -0
- data/lib/shopify_api/rest/resources/2022_01/image.rb +153 -0
- data/lib/shopify_api/rest/resources/2022_01/inventory_item.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_01/inventory_level.rb +175 -0
- data/lib/shopify_api/rest/resources/2022_01/location.rb +163 -0
- data/lib/shopify_api/rest/resources/2022_01/locations_for_move.rb +52 -0
- data/lib/shopify_api/rest/resources/2022_01/marketing_event.rb +205 -0
- data/lib/shopify_api/rest/resources/2022_01/metafield.rb +338 -0
- data/lib/shopify_api/rest/resources/2022_01/mobile_platform_application.rb +106 -0
- data/lib/shopify_api/rest/resources/2022_01/order.rb +469 -0
- data/lib/shopify_api/rest/resources/2022_01/order_risk.rb +131 -0
- data/lib/shopify_api/rest/resources/2022_01/page.rb +190 -0
- data/lib/shopify_api/rest/resources/2022_01/payment.rb +136 -0
- data/lib/shopify_api/rest/resources/2022_01/payment_gateway.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_01/payment_transaction.rb +103 -0
- data/lib/shopify_api/rest/resources/2022_01/payout.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_01/policy.rb +65 -0
- data/lib/shopify_api/rest/resources/2022_01/price_rule.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_01/product.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_01/product_listing.rb +192 -0
- data/lib/shopify_api/rest/resources/2022_01/product_resource_feedback.rb +84 -0
- data/lib/shopify_api/rest/resources/2022_01/province.rb +128 -0
- data/lib/shopify_api/rest/resources/2022_01/recurring_application_charge.rb +163 -0
- data/lib/shopify_api/rest/resources/2022_01/redirect.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_01/refund.rb +147 -0
- data/lib/shopify_api/rest/resources/2022_01/report.rb +117 -0
- data/lib/shopify_api/rest/resources/2022_01/resource_feedback.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_01/script_tag.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_01/shipping_zone.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_01/shop.rb +214 -0
- data/lib/shopify_api/rest/resources/2022_01/smart_collection.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_01/storefront_access_token.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/tender_transaction.rb +89 -0
- data/lib/shopify_api/rest/resources/2022_01/theme.rb +116 -0
- data/lib/shopify_api/rest/resources/2022_01/transaction.rb +177 -0
- data/lib/shopify_api/rest/resources/2022_01/usage_charge.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_01/user.rb +134 -0
- data/lib/shopify_api/rest/resources/2022_01/variant.rb +204 -0
- data/lib/shopify_api/rest/resources/2022_01/webhook.rb +164 -0
- data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +186 -0
- data/lib/shopify_api/rest/resources/2022_04/access_scope.rb +54 -0
- data/lib/shopify_api/rest/resources/2022_04/android_pay_key.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_04/apple_pay_certificate.rb +101 -0
- data/lib/shopify_api/rest/resources/2022_04/application_charge.rb +100 -0
- data/lib/shopify_api/rest/resources/2022_04/application_credit.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/article.rb +254 -0
- data/lib/shopify_api/rest/resources/2022_04/asset.rb +114 -0
- data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +75 -0
- data/lib/shopify_api/rest/resources/2022_04/balance.rb +46 -0
- data/lib/shopify_api/rest/resources/2022_04/blog.rb +158 -0
- data/lib/shopify_api/rest/resources/2022_04/cancellation_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_04/carrier_service.rb +112 -0
- data/lib/shopify_api/rest/resources/2022_04/checkout.rb +205 -0
- data/lib/shopify_api/rest/resources/2022_04/collect.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_04/collection.rb +106 -0
- data/lib/shopify_api/rest/resources/2022_04/collection_listing.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_04/comment.rb +279 -0
- data/lib/shopify_api/rest/resources/2022_04/country.rb +133 -0
- data/lib/shopify_api/rest/resources/2022_04/currency.rb +53 -0
- data/lib/shopify_api/rest/resources/2022_04/custom_collection.rb +183 -0
- data/lib/shopify_api/rest/resources/2022_04/customer.rb +291 -0
- data/lib/shopify_api/rest/resources/2022_04/customer_address.rb +197 -0
- data/lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb +165 -0
- data/lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb +53 -0
- data/lib/shopify_api/rest/resources/2022_04/discount_code.rb +215 -0
- data/lib/shopify_api/rest/resources/2022_04/dispute.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +269 -0
- data/lib/shopify_api/rest/resources/2022_04/event.rb +144 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_event.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +277 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_service.rb +126 -0
- data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +203 -0
- data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +114 -0
- data/lib/shopify_api/rest/resources/2022_04/image.rb +153 -0
- data/lib/shopify_api/rest/resources/2022_04/inventory_item.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_04/inventory_level.rb +175 -0
- data/lib/shopify_api/rest/resources/2022_04/location.rb +163 -0
- data/lib/shopify_api/rest/resources/2022_04/locations_for_move.rb +52 -0
- data/lib/shopify_api/rest/resources/2022_04/marketing_event.rb +205 -0
- data/lib/shopify_api/rest/resources/2022_04/metafield.rb +338 -0
- data/lib/shopify_api/rest/resources/2022_04/mobile_platform_application.rb +106 -0
- data/lib/shopify_api/rest/resources/2022_04/order.rb +469 -0
- data/lib/shopify_api/rest/resources/2022_04/order_risk.rb +131 -0
- data/lib/shopify_api/rest/resources/2022_04/page.rb +190 -0
- data/lib/shopify_api/rest/resources/2022_04/payment.rb +136 -0
- data/lib/shopify_api/rest/resources/2022_04/payment_gateway.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_04/payment_transaction.rb +103 -0
- data/lib/shopify_api/rest/resources/2022_04/payout.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_04/policy.rb +65 -0
- data/lib/shopify_api/rest/resources/2022_04/price_rule.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_04/product.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_04/product_listing.rb +192 -0
- data/lib/shopify_api/rest/resources/2022_04/product_resource_feedback.rb +84 -0
- data/lib/shopify_api/rest/resources/2022_04/province.rb +128 -0
- data/lib/shopify_api/rest/resources/2022_04/recurring_application_charge.rb +163 -0
- data/lib/shopify_api/rest/resources/2022_04/redirect.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_04/refund.rb +147 -0
- data/lib/shopify_api/rest/resources/2022_04/report.rb +117 -0
- data/lib/shopify_api/rest/resources/2022_04/resource_feedback.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_04/script_tag.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_04/shipping_zone.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_04/shop.rb +214 -0
- data/lib/shopify_api/rest/resources/2022_04/smart_collection.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/tender_transaction.rb +89 -0
- data/lib/shopify_api/rest/resources/2022_04/theme.rb +116 -0
- data/lib/shopify_api/rest/resources/2022_04/transaction.rb +177 -0
- data/lib/shopify_api/rest/resources/2022_04/usage_charge.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_04/user.rb +134 -0
- data/lib/shopify_api/rest/resources/2022_04/variant.rb +204 -0
- data/lib/shopify_api/rest/resources/2022_04/webhook.rb +164 -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 +3 -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 +216 -0
- data/lib/shopify_api/webhooks/request.rb +56 -0
- data/lib/shopify_api.rb +18 -40
- data/service.yml +0 -3
- data/shipit.rubygems.yml +1 -1
- data/shopify_api.gemspec +28 -23
- 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 +511 -356
- data/.document +0 -5
- data/.gitignore +0 -14
- data/.rubocop_todo.yml +0 -75
- data/CONTRIBUTORS +0 -3
- data/Gemfile_ar41 +0 -5
- data/Gemfile_ar50 +0 -5
- data/Gemfile_ar51 +0 -5
- data/Gemfile_ar60 +0 -5
- data/Gemfile_ar_main +0 -5
- data/docker-compose.yml +0 -13
- data/docs/_config.yml +0 -1
- data/docs/_includes/footer.html +0 -28
- data/docs/_includes/head.html +0 -28
- data/docs/_layouts/index.html +0 -57
- data/docs/graphql.md +0 -241
- data/docs/index.md +0 -639
- data/lib/active_resource/connection_ext.rb +0 -11
- data/lib/active_resource/detailed_log_subscriber.rb +0 -55
- data/lib/active_resource/json_errors.rb +0 -37
- data/lib/shopify_api/api_access.rb +0 -57
- data/lib/shopify_api/api_version.rb +0 -206
- data/lib/shopify_api/connection.rb +0 -36
- data/lib/shopify_api/countable.rb +0 -15
- data/lib/shopify_api/disable_prefix_check.rb +0 -31
- data/lib/shopify_api/events.rb +0 -8
- 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 -103
- data/lib/shopify_api/hmac_params.rb +0 -33
- data/lib/shopify_api/limits.rb +0 -77
- data/lib/shopify_api/message_enricher.rb +0 -25
- data/lib/shopify_api/meta.rb +0 -14
- data/lib/shopify_api/metafields.rb +0 -21
- data/lib/shopify_api/paginated_collection.rb +0 -69
- data/lib/shopify_api/pagination_link_headers.rb +0 -34
- 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 -9
- data/lib/shopify_api/resources/address.rb +0 -5
- data/lib/shopify_api/resources/announcement.rb +0 -5
- data/lib/shopify_api/resources/api_permission.rb +0 -9
- data/lib/shopify_api/resources/application_charge.rb +0 -16
- data/lib/shopify_api/resources/application_credit.rb +0 -5
- data/lib/shopify_api/resources/array_base.rb +0 -13
- data/lib/shopify_api/resources/article.rb +0 -22
- data/lib/shopify_api/resources/asset.rb +0 -101
- data/lib/shopify_api/resources/assigned_fulfillment_order.rb +0 -16
- data/lib/shopify_api/resources/base.rb +0 -166
- data/lib/shopify_api/resources/billing_address.rb +0 -5
- data/lib/shopify_api/resources/blog.rb +0 -11
- data/lib/shopify_api/resources/carrier_service.rb +0 -5
- data/lib/shopify_api/resources/cart.rb +0 -5
- data/lib/shopify_api/resources/checkout.rb +0 -30
- data/lib/shopify_api/resources/collect.rb +0 -7
- data/lib/shopify_api/resources/collection.rb +0 -14
- data/lib/shopify_api/resources/collection_listing.rb +0 -19
- data/lib/shopify_api/resources/collection_publication.rb +0 -10
- data/lib/shopify_api/resources/comment.rb +0 -24
- data/lib/shopify_api/resources/country.rb +0 -5
- data/lib/shopify_api/resources/currency.rb +0 -6
- data/lib/shopify_api/resources/custom_collection.rb +0 -20
- data/lib/shopify_api/resources/customer.rb +0 -30
- data/lib/shopify_api/resources/customer_group.rb +0 -6
- data/lib/shopify_api/resources/customer_invite.rb +0 -5
- data/lib/shopify_api/resources/customer_saved_search.rb +0 -12
- data/lib/shopify_api/resources/discount_code.rb +0 -10
- data/lib/shopify_api/resources/discount_code_batch.rb +0 -34
- data/lib/shopify_api/resources/draft_order.rb +0 -15
- data/lib/shopify_api/resources/draft_order_invoice.rb +0 -5
- data/lib/shopify_api/resources/event.rb +0 -9
- data/lib/shopify_api/resources/fulfillment.rb +0 -56
- data/lib/shopify_api/resources/fulfillment_event.rb +0 -16
- data/lib/shopify_api/resources/fulfillment_order.rb +0 -151
- data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +0 -5
- data/lib/shopify_api/resources/fulfillment_request.rb +0 -16
- data/lib/shopify_api/resources/fulfillment_service.rb +0 -5
- data/lib/shopify_api/resources/fulfillment_v2.rb +0 -21
- data/lib/shopify_api/resources/gift_card.rb +0 -8
- data/lib/shopify_api/resources/image.rb +0 -17
- data/lib/shopify_api/resources/inventory_item.rb +0 -6
- data/lib/shopify_api/resources/inventory_level.rb +0 -54
- data/lib/shopify_api/resources/line_item.rb +0 -15
- data/lib/shopify_api/resources/location.rb +0 -8
- data/lib/shopify_api/resources/marketing_event.rb +0 -11
- data/lib/shopify_api/resources/metafield.rb +0 -14
- data/lib/shopify_api/resources/note_attribute.rb +0 -5
- data/lib/shopify_api/resources/option.rb +0 -5
- data/lib/shopify_api/resources/order.rb +0 -44
- data/lib/shopify_api/resources/order_risk.rb +0 -9
- data/lib/shopify_api/resources/page.rb +0 -7
- data/lib/shopify_api/resources/payment.rb +0 -7
- data/lib/shopify_api/resources/payment_details.rb +0 -5
- data/lib/shopify_api/resources/ping.rb +0 -3
- data/lib/shopify_api/resources/policy.rb +0 -8
- data/lib/shopify_api/resources/price_rule.rb +0 -8
- data/lib/shopify_api/resources/product.rb +0 -59
- data/lib/shopify_api/resources/product_listing.rb +0 -17
- data/lib/shopify_api/resources/product_publication.rb +0 -10
- data/lib/shopify_api/resources/province.rb +0 -6
- data/lib/shopify_api/resources/publication.rb +0 -5
- data/lib/shopify_api/resources/receipt.rb +0 -5
- data/lib/shopify_api/resources/recurring_application_charge.rb +0 -34
- data/lib/shopify_api/resources/redirect.rb +0 -5
- data/lib/shopify_api/resources/refund.rb +0 -15
- data/lib/shopify_api/resources/report.rb +0 -5
- data/lib/shopify_api/resources/resource_feedback.rb +0 -19
- data/lib/shopify_api/resources/rule.rb +0 -5
- data/lib/shopify_api/resources/script_tag.rb +0 -5
- data/lib/shopify_api/resources/shipping_address.rb +0 -5
- data/lib/shopify_api/resources/shipping_line.rb +0 -5
- data/lib/shopify_api/resources/shipping_rate.rb +0 -7
- data/lib/shopify_api/resources/shipping_zone.rb +0 -5
- data/lib/shopify_api/resources/shop.rb +0 -26
- data/lib/shopify_api/resources/smart_collection.rb +0 -15
- data/lib/shopify_api/resources/storefront_access_token.rb +0 -5
- data/lib/shopify_api/resources/tax_line.rb +0 -5
- data/lib/shopify_api/resources/tax_service.rb +0 -5
- data/lib/shopify_api/resources/tender_transaction.rb +0 -6
- data/lib/shopify_api/resources/theme.rb +0 -5
- data/lib/shopify_api/resources/transaction.rb +0 -6
- data/lib/shopify_api/resources/usage_charge.rb +0 -6
- data/lib/shopify_api/resources/user.rb +0 -5
- data/lib/shopify_api/resources/variant.rb +0 -43
- data/lib/shopify_api/resources/webhook.rb +0 -5
- data/lib/shopify_api/resources.rb +0 -4
- data/lib/shopify_api/session.rb +0 -203
- data/lib/verify_docs.rb +0 -8
- data/test/abandoned_checkouts_test.rb +0 -29
- data/test/access_scope_test.rb +0 -23
- data/test/access_token_test.rb +0 -20
- data/test/active_resource/json_errors_test.rb +0 -19
- data/test/api_access_test.rb +0 -153
- data/test/api_permission_test.rb +0 -9
- data/test/api_version_test.rb +0 -157
- data/test/application_charge_test.rb +0 -82
- data/test/application_credit_test.rb +0 -36
- data/test/article_test.rb +0 -72
- data/test/asset_test.rb +0 -26
- data/test/assigned_fulfillment_order_test.rb +0 -78
- data/test/base_test.rb +0 -213
- data/test/blog_test.rb +0 -9
- data/test/carrier_service_test.rb +0 -18
- data/test/cart_test.rb +0 -14
- data/test/checkouts_test.rb +0 -77
- data/test/collect_test.rb +0 -10
- data/test/collection_listing_test.rb +0 -84
- data/test/collection_publication_test.rb +0 -40
- data/test/collection_test.rb +0 -50
- data/test/countable_test.rb +0 -14
- data/test/currency_test.rb +0 -21
- data/test/custom_collection_test.rb +0 -10
- data/test/customer_saved_search_test.rb +0 -37
- data/test/customer_test.rb +0 -58
- data/test/detailed_log_subscriber_test.rb +0 -143
- data/test/discount_code_batch_test.rb +0 -41
- data/test/discount_code_test.rb +0 -59
- data/test/draft_order_test.rb +0 -167
- 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 -80
- 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_code_batch.json +0 -14
- data/test/fixtures/discount_code_batch_discount_codes.json +0 -21
- 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 -39
- data/test/fixtures/fulfillment_order_locations_for_move.json +0 -18
- data/test/fixtures/fulfillment_orders.json +0 -80
- 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 -74
- data/test/fulfillment_order_test.rb +0 -530
- data/test/fulfillment_order_test_helper.rb +0 -8
- data/test/fulfillment_request_test.rb +0 -35
- data/test/fulfillment_service_test.rb +0 -18
- data/test/fulfillment_test.rb +0 -239
- data/test/fulfillment_v2_test.rb +0 -66
- data/test/gift_card_test.rb +0 -24
- data/test/graphql/http_client_test.rb +0 -26
- data/test/graphql_test.rb +0 -190
- data/test/hmac_params_test.rb +0 -25
- data/test/image_test.rb +0 -41
- data/test/inventory_level_test.rb +0 -68
- data/test/lib/webmock_extensions/last_request.rb +0 -16
- data/test/limits_test.rb +0 -39
- data/test/location_test.rb +0 -15
- data/test/marketing_event_test.rb +0 -68
- data/test/message_enricher_test.rb +0 -45
- data/test/meta_test.rb +0 -47
- data/test/metafield_test.rb +0 -56
- data/test/order_risk_test.rb +0 -47
- data/test/order_test.rb +0 -140
- data/test/pagination_test.rb +0 -290
- data/test/payment_test.rb +0 -19
- data/test/policy_test.rb +0 -20
- data/test/price_rule_test.rb +0 -70
- data/test/product_listing_test.rb +0 -97
- data/test/product_publication_test.rb +0 -40
- data/test/product_test.rb +0 -111
- data/test/publication_test.rb +0 -12
- data/test/recurring_application_charge_test.rb +0 -204
- data/test/redirect_test.rb +0 -10
- data/test/refund_test.rb +0 -37
- data/test/report_test.rb +0 -37
- data/test/resource_feedback_test.rb +0 -43
- data/test/script_tag_test.rb +0 -31
- data/test/session_test.rb +0 -640
- data/test/shipping_rate_test.rb +0 -17
- data/test/shipping_zone_test.rb +0 -11
- data/test/shop_test.rb +0 -82
- data/test/smart_collection_test.rb +0 -11
- data/test/storefront_access_token_test.rb +0 -30
- data/test/tax_service_test.rb +0 -12
- data/test/tender_transaction_test.rb +0 -18
- data/test/test_helper.rb +0 -126
- data/test/transaction_test.rb +0 -18
- data/test/usage_charge_test.rb +0 -25
- data/test/user_test.rb +0 -18
- data/test/variant_test.rb +0 -73
- data/test/webhook_test.rb +0 -24
@@ -1,82 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class ApplicationChargeTest < Test::Unit::TestCase
|
5
|
-
def test_application_charge_create
|
6
|
-
fake("application_charges", method: :post, status: 201, body: load_fixture('application_charge'))
|
7
|
-
|
8
|
-
charge = ShopifyAPI::ApplicationCharge.create(
|
9
|
-
name: "iPod Cleaning",
|
10
|
-
price: 5.00,
|
11
|
-
return_url: "http://google.com"
|
12
|
-
)
|
13
|
-
|
14
|
-
assert_equal(
|
15
|
-
'https://this-is-my-test-shop.myshopify.com/admin/charges/803742/confirm_application_charge?' \
|
16
|
-
'signature=BAhpA55DDA%3D%3D--55b44e274e438c619be4631c804abcbcb6ee915a',
|
17
|
-
charge.confirmation_url
|
18
|
-
)
|
19
|
-
end
|
20
|
-
|
21
|
-
def test_get_application_charge
|
22
|
-
fake("application_charges/803742", method: :get, status: 201, body: load_fixture('application_charge'))
|
23
|
-
|
24
|
-
charge = ShopifyAPI::ApplicationCharge.find(803742)
|
25
|
-
|
26
|
-
assert_equal("iPod Cleaning", charge.name)
|
27
|
-
end
|
28
|
-
|
29
|
-
def test_list_application_charges
|
30
|
-
fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
|
31
|
-
|
32
|
-
charges = ShopifyAPI::ApplicationCharge.find(:all)
|
33
|
-
|
34
|
-
assert_equal(4, charges.size)
|
35
|
-
assert_equal("iPhone Case", charges.last.name)
|
36
|
-
end
|
37
|
-
|
38
|
-
def test_list_pending_application_charges
|
39
|
-
fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
|
40
|
-
|
41
|
-
pending_charges = ShopifyAPI::ApplicationCharge.pending
|
42
|
-
|
43
|
-
assert_equal(1, pending_charges.size)
|
44
|
-
assert_equal("Screen Replacement", pending_charges.first.name)
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_list_expired_application_charges
|
48
|
-
fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
|
49
|
-
|
50
|
-
expired_charges = ShopifyAPI::ApplicationCharge.expired
|
51
|
-
|
52
|
-
assert_equal(1, expired_charges.size)
|
53
|
-
assert_equal("iPod Cleaning", expired_charges.first.name)
|
54
|
-
end
|
55
|
-
|
56
|
-
def test_list_accepted_application_charges
|
57
|
-
fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
|
58
|
-
|
59
|
-
accepted_charges = ShopifyAPI::ApplicationCharge.accepted
|
60
|
-
|
61
|
-
assert_equal(1, accepted_charges.size)
|
62
|
-
assert_equal("iPhone Case", accepted_charges.first.name)
|
63
|
-
end
|
64
|
-
|
65
|
-
def test_list_declined_application_charges
|
66
|
-
fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
|
67
|
-
|
68
|
-
declined_charges = ShopifyAPI::ApplicationCharge.declined
|
69
|
-
|
70
|
-
assert_equal(1, declined_charges.size)
|
71
|
-
assert_equal("Magic Mouse", declined_charges.first.name)
|
72
|
-
end
|
73
|
-
|
74
|
-
def test_activate_application_charge
|
75
|
-
fake("application_charges", method: :get, status: 201, body: load_fixture('application_charges'))
|
76
|
-
fake("application_charges/803740/activate", method: :post, status: 200, body: "{}")
|
77
|
-
|
78
|
-
charge = ShopifyAPI::ApplicationCharge.accepted
|
79
|
-
|
80
|
-
assert(charge.last.activate)
|
81
|
-
end
|
82
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class ApplicationCreditTest < Test::Unit::TestCase
|
5
|
-
def test_application_credit_create
|
6
|
-
fake("application_credits", method: :post, status: 201, body: load_fixture('application_credit'))
|
7
|
-
|
8
|
-
credit = ShopifyAPI::ApplicationCredit.create(
|
9
|
-
description: "refund for application charge",
|
10
|
-
amount: 5.00,
|
11
|
-
api_client_id: 861378,
|
12
|
-
shop_id: 487168
|
13
|
-
)
|
14
|
-
|
15
|
-
assert_equal('refund for application charge', credit.description)
|
16
|
-
assert_equal('5.00', credit.amount)
|
17
|
-
end
|
18
|
-
|
19
|
-
def test_get_application_credit
|
20
|
-
fake("application_credits/803742", method: :get, status: 201, body: load_fixture('application_credit'))
|
21
|
-
|
22
|
-
credit = ShopifyAPI::ApplicationCredit.find(803742)
|
23
|
-
|
24
|
-
assert_equal('refund for application charge', credit.description)
|
25
|
-
assert_equal('5.00', credit.amount)
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_list_application_credits
|
29
|
-
fake("application_credits", method: :get, status: 201, body: load_fixture('application_credits'))
|
30
|
-
|
31
|
-
credit = ShopifyAPI::ApplicationCredit.find(:all)
|
32
|
-
|
33
|
-
assert_equal(2, credit.size)
|
34
|
-
assert_equal('10.00', credit.last.amount)
|
35
|
-
end
|
36
|
-
end
|
data/test/article_test.rb
DELETED
@@ -1,72 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class ArticleTest < Test::Unit::TestCase
|
5
|
-
def test_create_article
|
6
|
-
fake("blogs/1008414260/articles", method: :post, body: load_fixture('article'))
|
7
|
-
article = ShopifyAPI::Article.new(blog_id: 1008414260)
|
8
|
-
article.save
|
9
|
-
assert_equal("First Post", article.title)
|
10
|
-
end
|
11
|
-
|
12
|
-
def test_get_article
|
13
|
-
fake("articles/6242736", method: :get, body: load_fixture('article'))
|
14
|
-
article = ShopifyAPI::Article.find(6242736)
|
15
|
-
assert_equal("First Post", article.title)
|
16
|
-
assert_equal(1008414260, article.blog_id)
|
17
|
-
end
|
18
|
-
|
19
|
-
def test_get_articles
|
20
|
-
fake("articles", method: :get, body: load_fixture('articles'))
|
21
|
-
articles = ShopifyAPI::Article.all
|
22
|
-
assert_equal(3, articles.length)
|
23
|
-
assert_equal(1008414260, articles.first.blog_id)
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_get_articles_namespaced
|
27
|
-
fake("blogs/1008414260/articles", method: :get, body: load_fixture('articles'))
|
28
|
-
articles = ShopifyAPI::Article.find(:all, params: { blog_id: 1008414260 })
|
29
|
-
assert_equal(3, articles.length)
|
30
|
-
assert_equal(1008414260, articles.first.blog_id)
|
31
|
-
end
|
32
|
-
|
33
|
-
def test_get_article_namespaced
|
34
|
-
fake("blogs/1008414260/articles/6242736", method: :get, body: load_fixture('article'))
|
35
|
-
article = ShopifyAPI::Article.find(6242736, params: { blog_id: 1008414260 })
|
36
|
-
assert_equal("First Post", article.title)
|
37
|
-
assert_equal(1008414260, article.blog_id)
|
38
|
-
end
|
39
|
-
|
40
|
-
def test_get_authors
|
41
|
-
fake("articles/authors", method: :get, body: load_fixture('authors'))
|
42
|
-
authors = ShopifyAPI::Article.authors
|
43
|
-
assert_equal("Shopify", authors.first)
|
44
|
-
assert_equal("development shop", authors.last)
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_get_authors_for_blog_id
|
48
|
-
fake("blogs/1008414260/articles/authors", method: :get, body: load_fixture('authors'))
|
49
|
-
authors = ShopifyAPI::Article.authors(blog_id: 1008414260)
|
50
|
-
assert_equal(3, authors.length)
|
51
|
-
end
|
52
|
-
|
53
|
-
def test_get_tags
|
54
|
-
fake("articles/tags", method: :get, body: load_fixture('tags'))
|
55
|
-
tags = ShopifyAPI::Article.tags
|
56
|
-
assert_equal("consequuntur", tags.first)
|
57
|
-
assert_equal("repellendus", tags.last)
|
58
|
-
end
|
59
|
-
|
60
|
-
def test_get_tags_for_blog_id
|
61
|
-
fake("blogs/1008414260/articles/tags", method: :get, body: load_fixture('tags'))
|
62
|
-
tags = ShopifyAPI::Article.tags(blog_id: 1008414260)
|
63
|
-
assert_equal("consequuntur", tags.first)
|
64
|
-
assert_equal("repellendus", tags.last)
|
65
|
-
end
|
66
|
-
|
67
|
-
def test_get_popular_tags
|
68
|
-
fake("articles/tags.json?limit=1&popular=1", extension: false, method: :get, body: load_fixture('tags'))
|
69
|
-
tags = ShopifyAPI::Article.tags(popular: 1, limit: 1)
|
70
|
-
assert_equal(3, tags.length)
|
71
|
-
end
|
72
|
-
end
|
data/test/asset_test.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class AssetTest < Test::Unit::TestCase
|
5
|
-
def test_get_assetss
|
6
|
-
fake("themes/1/assets", method: :get, body: load_fixture('assets'))
|
7
|
-
ShopifyAPI::Asset.find(:all, params: { theme_id: 1 })
|
8
|
-
end
|
9
|
-
|
10
|
-
def test_get_asset_namespaced
|
11
|
-
fake(
|
12
|
-
"themes/1/assets.json?asset%5Bkey%5D=templates%2Findex.liquid&theme_id=1",
|
13
|
-
extension: false,
|
14
|
-
method: :get,
|
15
|
-
body: load_fixture('asset')
|
16
|
-
)
|
17
|
-
ShopifyAPI::Asset.find('templates/index.liquid', params: { theme_id: 1 })
|
18
|
-
end
|
19
|
-
|
20
|
-
def test_get_asset
|
21
|
-
fake(
|
22
|
-
"assets.json?asset%5Bkey%5D=templates%2Findex.liquid", extension: false, method: :get, body: load_fixture('asset')
|
23
|
-
)
|
24
|
-
ShopifyAPI::Asset.find('templates/index.liquid')
|
25
|
-
end
|
26
|
-
end
|
@@ -1,78 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
require 'fulfillment_order_test_helper'
|
4
|
-
|
5
|
-
class AssignedFulFillmentOrderTest < Test::Unit::TestCase
|
6
|
-
include FulfillmentOrderTestHelper
|
7
|
-
|
8
|
-
def setup
|
9
|
-
super
|
10
|
-
@url_prefix = url_prefix_for_activated_session_for('2020-01')
|
11
|
-
@fulfillment_order_fixture = load_fixture('assigned_fulfillment_orders')
|
12
|
-
end
|
13
|
-
|
14
|
-
context "AssignedFulfillmentOrder" do
|
15
|
-
context ".new" do
|
16
|
-
should "raise NotImplementedError when api_version is older than 2020-01" do
|
17
|
-
url_prefix_for_activated_session_for('2019-10')
|
18
|
-
|
19
|
-
assert_raises(NotImplementedError) do
|
20
|
-
ShopifyAPI::AssignedFulfillmentOrder.new(ActiveSupport::JSON.decode(@fulfillment_order_fixture))
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
context "#all" do
|
26
|
-
should "raise NotImplementedError when api_version is older than 2020-01" do
|
27
|
-
@url_prefix = url_prefix_for_activated_session_for('2019-10')
|
28
|
-
|
29
|
-
fake 'assigned_fulfillment_orders',
|
30
|
-
url: "#{@url_prefix}/assigned_fulfillment_orders.json",
|
31
|
-
method: :get,
|
32
|
-
body: @fulfillment_order_fixture,
|
33
|
-
extension: false
|
34
|
-
|
35
|
-
assert_raises(NotImplementedError) do
|
36
|
-
ShopifyAPI::AssignedFulfillmentOrder.all(params: { assigned_status: 'cancellation_requested' })
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
should "list assigned fulfillment orders by assigned_status" do
|
41
|
-
fake 'assigned_fulfillment_orders',
|
42
|
-
url: "#{@url_prefix}/assigned_fulfillment_orders.json?assigned_status=cancellation_requested",
|
43
|
-
method: :get,
|
44
|
-
body: @fulfillment_order_fixture,
|
45
|
-
extension: false
|
46
|
-
|
47
|
-
assigned_fulfillment_orders = ShopifyAPI::AssignedFulfillmentOrder.all(
|
48
|
-
params: { assigned_status: 'cancellation_requested' }
|
49
|
-
)
|
50
|
-
|
51
|
-
assert_equal 2, assigned_fulfillment_orders.count
|
52
|
-
assigned_fulfillment_orders.each do |fulfillment_order|
|
53
|
-
assert fulfillment_order.is_a?(ShopifyAPI::FulfillmentOrder)
|
54
|
-
assert_equal 'in_progress', fulfillment_order.status
|
55
|
-
assert_equal 'cancellation_accepted', fulfillment_order.request_status
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
should "be able to list assigned fulfillment orders by location_ids" do
|
60
|
-
assigned_location_id = 905684977
|
61
|
-
fake 'assigned_fulfillment_orders',
|
62
|
-
url: "#{@url_prefix}/assigned_fulfillment_orders.json?location_ids%5B%5D=#{assigned_location_id}",
|
63
|
-
method: :get,
|
64
|
-
body: @fulfillment_order_fixture, extension: false
|
65
|
-
|
66
|
-
assigned_fulfillment_orders = ShopifyAPI::AssignedFulfillmentOrder.all(
|
67
|
-
params: { location_ids: [assigned_location_id] }
|
68
|
-
)
|
69
|
-
|
70
|
-
assert_equal 2, assigned_fulfillment_orders.count
|
71
|
-
assigned_fulfillment_orders.each do |fulfillment_order|
|
72
|
-
assert fulfillment_order.is_a?(ShopifyAPI::FulfillmentOrder)
|
73
|
-
assert_equal assigned_location_id, fulfillment_order.assigned_location_id
|
74
|
-
end
|
75
|
-
end
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
data/test/base_test.rb
DELETED
@@ -1,213 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
require "active_support/log_subscriber/test_helper"
|
4
|
-
|
5
|
-
class BaseTest < Test::Unit::TestCase
|
6
|
-
def setup
|
7
|
-
super
|
8
|
-
@session1 = ShopifyAPI::Session.new(domain: 'shop1.myshopify.com', token: 'token1', api_version: '2019-01')
|
9
|
-
@session2 = ShopifyAPI::Session.new(domain: 'shop2.myshopify.com', token: 'token2', api_version: '2019-01')
|
10
|
-
end
|
11
|
-
|
12
|
-
def teardown
|
13
|
-
super
|
14
|
-
clear_header('X-Custom')
|
15
|
-
end
|
16
|
-
|
17
|
-
test '#activate_session should set site and headers for given session' do
|
18
|
-
ShopifyAPI::Base.activate_session(@session1)
|
19
|
-
|
20
|
-
assert_nil(ActiveResource::Base.site)
|
21
|
-
assert_equal('https://shop1.myshopify.com', ShopifyAPI::Base.site.to_s)
|
22
|
-
assert_equal('https://shop1.myshopify.com', ShopifyAPI::Shop.site.to_s)
|
23
|
-
|
24
|
-
assert_nil(ActiveResource::Base.headers['X-Shopify-Access-Token'])
|
25
|
-
assert_equal('token1', ShopifyAPI::Base.headers['X-Shopify-Access-Token'])
|
26
|
-
assert_equal('token1', ShopifyAPI::Shop.headers['X-Shopify-Access-Token'])
|
27
|
-
end
|
28
|
-
|
29
|
-
test '#clear_session should clear base site settings from Base' do
|
30
|
-
ShopifyAPI::Base.site = "https://foo:bar@www.zombo.com"
|
31
|
-
|
32
|
-
assert_equal("foo", ShopifyAPI::Base.user)
|
33
|
-
assert_equal("bar", ShopifyAPI::Base.password)
|
34
|
-
|
35
|
-
ShopifyAPI::Base.clear_session
|
36
|
-
|
37
|
-
assert_nil(ShopifyAPI::Base.user)
|
38
|
-
assert_nil(ShopifyAPI::Base.password)
|
39
|
-
assert_nil(ShopifyAPI::Base.site)
|
40
|
-
end
|
41
|
-
|
42
|
-
# test to check session reset api version remains the same after session reset
|
43
|
-
test '#clear_session should not change the api_version' do
|
44
|
-
ShopifyAPI::Base.site = "https://zoo:lion@www.zoo.com"
|
45
|
-
|
46
|
-
assert_equal("zoo", ShopifyAPI::Base.user)
|
47
|
-
assert_equal("lion", ShopifyAPI::Base.password)
|
48
|
-
|
49
|
-
ShopifyAPI::Base.clear_session
|
50
|
-
|
51
|
-
assert_nil(ShopifyAPI::Base.user)
|
52
|
-
assert_nil(ShopifyAPI::Base.password)
|
53
|
-
assert_nil(ShopifyAPI::Base.site)
|
54
|
-
assert_equal(ShopifyAPI::Base.api_version, @session1.api_version)
|
55
|
-
end
|
56
|
-
|
57
|
-
test '#clear_session should clear site and headers from Base' do
|
58
|
-
ShopifyAPI::Base.activate_session(@session1)
|
59
|
-
ShopifyAPI::Base.clear_session
|
60
|
-
|
61
|
-
assert_nil(ActiveResource::Base.site)
|
62
|
-
assert_nil(ShopifyAPI::Base.site)
|
63
|
-
assert_nil(ShopifyAPI::Shop.site)
|
64
|
-
|
65
|
-
assert_nil(ActiveResource::Base.headers['X-Shopify-Access-Token'])
|
66
|
-
assert_nil(ShopifyAPI::Base.headers['X-Shopify-Access-Token'])
|
67
|
-
assert_nil(ShopifyAPI::Shop.headers['X-Shopify-Access-Token'])
|
68
|
-
end
|
69
|
-
|
70
|
-
test '#activate_session with one session, then clearing and activating with another session should send request to correct shop' do
|
71
|
-
ShopifyAPI::Base.activate_session(@session1)
|
72
|
-
ShopifyAPI::Base.clear_session
|
73
|
-
ShopifyAPI::Base.activate_session(@session2)
|
74
|
-
|
75
|
-
assert_nil(ActiveResource::Base.site)
|
76
|
-
assert_equal('https://shop2.myshopify.com', ShopifyAPI::Base.site.to_s)
|
77
|
-
assert_equal('https://shop2.myshopify.com', ShopifyAPI::Shop.site.to_s)
|
78
|
-
|
79
|
-
assert_nil(ActiveResource::Base.headers['X-Shopify-Access-Token'])
|
80
|
-
assert_equal('token2', ShopifyAPI::Base.headers['X-Shopify-Access-Token'])
|
81
|
-
assert_equal('token2', ShopifyAPI::Shop.headers['X-Shopify-Access-Token'])
|
82
|
-
end
|
83
|
-
|
84
|
-
test '#activate_session with nil raises an InvalidSessionError' do
|
85
|
-
assert_raises(ShopifyAPI::Base::InvalidSessionError) do
|
86
|
-
ShopifyAPI::Base.activate_session(nil)
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
test "#delete should send custom headers with request" do
|
91
|
-
ShopifyAPI::Base.activate_session(@session1)
|
92
|
-
ShopifyAPI::Base.headers['X-Custom'] = 'abc'
|
93
|
-
ShopifyAPI::Base.connection
|
94
|
-
.expects(:delete)
|
95
|
-
.with('/admin/api/2019-01/bases/1.json', has_entry('X-Custom', 'abc'))
|
96
|
-
ShopifyAPI::Base.delete("1")
|
97
|
-
end
|
98
|
-
|
99
|
-
test "#headers includes the User-Agent" do
|
100
|
-
assert_not_includes ActiveResource::Base.headers.keys, 'User-Agent'
|
101
|
-
assert_includes(ShopifyAPI::Base.headers.keys, 'User-Agent')
|
102
|
-
thread = Thread.new do
|
103
|
-
assert_includes(ShopifyAPI::Base.headers.keys, 'User-Agent')
|
104
|
-
end
|
105
|
-
thread.join
|
106
|
-
end
|
107
|
-
|
108
|
-
test "prefix= will forward to resource when the value does not start with admin" do
|
109
|
-
session = ShopifyAPI::Session.new(domain: 'shop1.myshopify.com', token: 'token1', api_version: '2019-01')
|
110
|
-
ShopifyAPI::Base.activate_session(session)
|
111
|
-
silence_warnings do
|
112
|
-
TestResource.prefix = 'a/regular/path/'
|
113
|
-
end
|
114
|
-
|
115
|
-
assert_equal('/admin/api/2019-01/a/regular/path/', TestResource.prefix)
|
116
|
-
end
|
117
|
-
|
118
|
-
test "prefix= will raise an error if value starts with with /admin" do
|
119
|
-
assert_raises(ArgumentError) do
|
120
|
-
TestResource.prefix = '/admin/old/prefix/structure/'
|
121
|
-
end
|
122
|
-
end
|
123
|
-
|
124
|
-
test "#headers propagates changes to subclasses" do
|
125
|
-
ShopifyAPI::Base.headers['X-Custom'] = "the value"
|
126
|
-
assert_equal("the value", ShopifyAPI::Base.headers['X-Custom'])
|
127
|
-
assert_equal("the value", ShopifyAPI::Product.headers['X-Custom'])
|
128
|
-
end
|
129
|
-
|
130
|
-
test "#headers clears changes to subclasses" do
|
131
|
-
ShopifyAPI::Base.headers['X-Custom'] = "the value"
|
132
|
-
assert_equal("the value", ShopifyAPI::Product.headers['X-Custom'])
|
133
|
-
ShopifyAPI::Base.headers['X-Custom'] = nil
|
134
|
-
assert_nil(ShopifyAPI::Product.headers['X-Custom'])
|
135
|
-
end
|
136
|
-
|
137
|
-
test "#headers set in the main thread affect spawned threads" do
|
138
|
-
ShopifyAPI::Base.headers['X-Custom'] = "the value"
|
139
|
-
Thread.new do
|
140
|
-
assert_equal("the value", ShopifyAPI::Base.headers['X-Custom'])
|
141
|
-
end.join
|
142
|
-
end
|
143
|
-
|
144
|
-
test "#headers set in spawned threads do not affect the main thread" do
|
145
|
-
Thread.new do
|
146
|
-
ShopifyAPI::Base.headers['X-Custom'] = "the value"
|
147
|
-
end.join
|
148
|
-
assert_nil(ShopifyAPI::Base.headers['X-Custom'])
|
149
|
-
end
|
150
|
-
|
151
|
-
test "using a different version changes the url" do
|
152
|
-
release_2019_01 = ShopifyAPI::Session.new(domain: 'shop1.myshopify.com', token: 'token1', api_version: '2019-01')
|
153
|
-
unstable_version = ShopifyAPI::Session.new(domain: 'shop2.myshopify.com', token: 'token2', api_version: :unstable)
|
154
|
-
|
155
|
-
fake(
|
156
|
-
"shop",
|
157
|
-
url: "https://shop1.myshopify.com/admin/api/2019-01/shop.json",
|
158
|
-
method: :get,
|
159
|
-
status: 201,
|
160
|
-
body: '{ "shop": { "id": 1 } }'
|
161
|
-
)
|
162
|
-
fake(
|
163
|
-
"shop",
|
164
|
-
url: "https://shop2.myshopify.com/admin/api/unstable/shop.json",
|
165
|
-
method: :get,
|
166
|
-
status: 201,
|
167
|
-
body: '{ "shop": { "id": 2 } }'
|
168
|
-
)
|
169
|
-
|
170
|
-
ShopifyAPI::Base.activate_session(release_2019_01)
|
171
|
-
assert_equal(1, ShopifyAPI::Shop.current.id)
|
172
|
-
|
173
|
-
ShopifyAPI::Base.activate_session(unstable_version)
|
174
|
-
assert_equal(2, ShopifyAPI::Shop.current.id)
|
175
|
-
end
|
176
|
-
|
177
|
-
test "#api_version= should set ApiVersion" do
|
178
|
-
ShopifyAPI::Base.api_version = '2019-04'
|
179
|
-
assert_equal('2019-04', ShopifyAPI::Base.api_version.to_s)
|
180
|
-
end
|
181
|
-
|
182
|
-
test "#api_version= nil should set ApiVersion to ShopifyAPI::ApiVersion::NullVersion" do
|
183
|
-
ShopifyAPI::Base.api_version = nil
|
184
|
-
assert_equal(ShopifyAPI::ApiVersion::NullVersion, ShopifyAPI::Base.api_version)
|
185
|
-
end
|
186
|
-
|
187
|
-
test "#api_version= ShopifyAPI::ApiVersion::NullVersion should set ApiVersion to ShopifyAPI::ApiVersion::NullVersion" do
|
188
|
-
ShopifyAPI::Base.api_version = ShopifyAPI::ApiVersion::NullVersion
|
189
|
-
assert_equal(ShopifyAPI::ApiVersion::NullVersion, ShopifyAPI::Base.api_version)
|
190
|
-
end
|
191
|
-
|
192
|
-
test "#version_validation! does not raise is api_version is newer or equal to minimum supported version" do
|
193
|
-
ShopifyAPI::Base.api_version = '2020-01'
|
194
|
-
assert_nil(ShopifyAPI::Base::version_validation!('2020-01'))
|
195
|
-
end
|
196
|
-
|
197
|
-
test "#version_validation! raises NotImplemetedError if api_version is older than minimum supported version" do
|
198
|
-
ShopifyAPI::Base.api_version = '2019-10'
|
199
|
-
exception = assert_raises(NotImplementedError) do
|
200
|
-
ShopifyAPI::Base::version_validation!('2020-01')
|
201
|
-
end
|
202
|
-
assert_equal('The minimum supported version is 2020-01.', exception.message)
|
203
|
-
end
|
204
|
-
|
205
|
-
def clear_header(header)
|
206
|
-
[ActiveResource::Base, ShopifyAPI::Base, ShopifyAPI::Product].each do |klass|
|
207
|
-
klass.headers.delete(header)
|
208
|
-
end
|
209
|
-
end
|
210
|
-
|
211
|
-
class TestResource < ShopifyAPI::Base
|
212
|
-
end
|
213
|
-
end
|
data/test/blog_test.rb
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
class BlogTest < Test::Unit::TestCase
|
4
|
-
test "blog creation" do
|
5
|
-
fake("blogs", method: :post, status: 202, body: load_fixture('blog'))
|
6
|
-
ShopifyAPI::Blog.create(title: "Test Blog")
|
7
|
-
assert_equal('{"blog":{"title":"Test Blog"}}', WebMock.last_request.body)
|
8
|
-
end
|
9
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class CarrierServiceTest < Test::Unit::TestCase
|
5
|
-
test 'new should create carrier service' do
|
6
|
-
fake("carrier_services", method: :post, body: load_fixture('carrier_service'))
|
7
|
-
carrier_service = ShopifyAPI::CarrierService.new(name: "Some Postal Service")
|
8
|
-
carrier_service.save
|
9
|
-
assert_equal("Some Postal Service", carrier_service.name)
|
10
|
-
end
|
11
|
-
|
12
|
-
test 'find should return the carrier service' do
|
13
|
-
fake("carrier_services/123456", method: :get, body: load_fixture('carrier_service'))
|
14
|
-
carrier_service = ShopifyAPI::CarrierService.find(123456)
|
15
|
-
assert_equal(123456, carrier_service.id)
|
16
|
-
assert_equal("Some Postal Service", carrier_service.name)
|
17
|
-
end
|
18
|
-
end
|
data/test/cart_test.rb
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class CartTest < Test::Unit::TestCase
|
5
|
-
test 'all should return all carts' do
|
6
|
-
fake 'carts'
|
7
|
-
carts = ShopifyAPI::Cart.all
|
8
|
-
assert_equal carts.size, 2
|
9
|
-
assert_equal 2, carts.first.id
|
10
|
-
assert_equal "3eed8183d4281db6ea82ee2b8f23e9cc", carts.first.token
|
11
|
-
assert_equal 1, carts.first.line_items.size
|
12
|
-
assert_equal 'test', carts.first.line_items.first.title
|
13
|
-
end
|
14
|
-
end
|
data/test/checkouts_test.rb
DELETED
@@ -1,77 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class CheckoutsTest < Test::Unit::TestCase
|
5
|
-
def setup
|
6
|
-
super
|
7
|
-
|
8
|
-
@expected_checkouts = JSON.parse(load_fixture('checkouts'))['checkouts']
|
9
|
-
@expected_checkout_id = JSON.parse(load_fixture('checkout'))['checkout']['token']
|
10
|
-
end
|
11
|
-
|
12
|
-
test ".headers includes a version" do
|
13
|
-
assert_equal "2016-09-06", ShopifyAPI::Checkout.headers["X-Shopify-Checkout-Version"]
|
14
|
-
assert_nil ShopifyAPI::Base.headers["X-Shopify-Checkout-Version"]
|
15
|
-
end
|
16
|
-
|
17
|
-
test ":create creates a checkout" do
|
18
|
-
fake 'checkouts', method: :post, status: 201, body: load_fixture('checkout')
|
19
|
-
|
20
|
-
checkout = ShopifyAPI::Checkout.create
|
21
|
-
|
22
|
-
assert_equal @expected_checkout_id, checkout.id
|
23
|
-
end
|
24
|
-
|
25
|
-
test "get all checkouts indexed by token" do
|
26
|
-
fake 'checkouts', method: :get, status: 200, body: load_fixture('checkouts')
|
27
|
-
|
28
|
-
checkouts = ShopifyAPI::Checkout.all
|
29
|
-
|
30
|
-
assert_equal @expected_checkout_id, checkouts.first.id
|
31
|
-
assert_equal @expected_checkouts.size, checkouts.size
|
32
|
-
end
|
33
|
-
|
34
|
-
test ":complete completes a checkout" do
|
35
|
-
fake "checkouts/#{@expected_checkout_id}", method: :get, status: 200, body: load_fixture('checkout')
|
36
|
-
|
37
|
-
checkout = ShopifyAPI::Checkout.find(@expected_checkout_id)
|
38
|
-
|
39
|
-
fake "checkouts/#{@expected_checkout_id}/complete", method: :post, status: 200, body: load_fixture('checkouts')
|
40
|
-
|
41
|
-
checkout.complete
|
42
|
-
end
|
43
|
-
|
44
|
-
test ":ready? returns true when status is 201" do
|
45
|
-
fake "checkouts/#{@expected_checkout_id}", method: :get, status: 201, body: load_fixture('checkout')
|
46
|
-
checkout = ShopifyAPI::Checkout.find(@expected_checkout_id)
|
47
|
-
|
48
|
-
assert_predicate checkout, :ready?
|
49
|
-
end
|
50
|
-
|
51
|
-
test ":ready? returns false when status is 202" do
|
52
|
-
fake "checkouts/#{@expected_checkout_id}", method: :get, status: 202, body: load_fixture('checkout')
|
53
|
-
checkout = ShopifyAPI::Checkout.find(@expected_checkout_id)
|
54
|
-
|
55
|
-
refute_predicate checkout, :ready?
|
56
|
-
end
|
57
|
-
|
58
|
-
test ":payments returns payments for a checkout" do
|
59
|
-
fake "checkouts/#{@expected_checkout_id}", method: :get, status: 200, body: load_fixture('checkout')
|
60
|
-
checkout = ShopifyAPI::Checkout.find(@expected_checkout_id)
|
61
|
-
|
62
|
-
fake "checkouts/#{@expected_checkout_id}/payments", method: :get, status: 202, body: load_fixture('payments')
|
63
|
-
|
64
|
-
assert_equal 10.00, checkout.payments.first.amount
|
65
|
-
end
|
66
|
-
|
67
|
-
test ":shipping_rates returns shipping rates for a checkout" do
|
68
|
-
fake "checkouts/#{@expected_checkout_id}", method: :get, status: 200, body: load_fixture('checkout')
|
69
|
-
checkout = ShopifyAPI::Checkout.find(@expected_checkout_id)
|
70
|
-
|
71
|
-
fake("checkouts/#{@expected_checkout_id}/shipping_rates",
|
72
|
-
method: :get,
|
73
|
-
status: 202,
|
74
|
-
body: load_fixture('shipping_rates'))
|
75
|
-
assert_equal "canada_post-INT.TP.BOGUS-4.00", checkout.shipping_rates.first.id
|
76
|
-
end
|
77
|
-
end
|
data/test/collect_test.rb
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class CollectTest < Test::Unit::TestCase
|
5
|
-
test "#create should create a collect" do
|
6
|
-
fake("collects", method: :post, status: 201, body: load_fixture('collect'))
|
7
|
-
link = ShopifyAPI::Collect.create(product_id: 921728736, collection_id: 841564295)
|
8
|
-
assert_equal(841564295, link.id)
|
9
|
-
end
|
10
|
-
end
|