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,530 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
require 'fulfillment_order_test_helper'
|
4
|
-
|
5
|
-
class FulFillmentOrderTest < Test::Unit::TestCase
|
6
|
-
include FulfillmentOrderTestHelper
|
7
|
-
|
8
|
-
def setup
|
9
|
-
super
|
10
|
-
@url_prefix = url_prefix_for_activated_session_for('2020-01')
|
11
|
-
|
12
|
-
fake(
|
13
|
-
'fulfillment_orders',
|
14
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021.json",
|
15
|
-
method: :get,
|
16
|
-
body: load_fixture('fulfillment_order')
|
17
|
-
)
|
18
|
-
end
|
19
|
-
|
20
|
-
context "FulfillmentOrder" do
|
21
|
-
context ".new" do
|
22
|
-
should "raise NotImplementedError when api_version is older than 2020-01" do
|
23
|
-
url_prefix_for_activated_session_for('2019-10')
|
24
|
-
fulfillment_order = load_fixture('fulfillment_order')
|
25
|
-
|
26
|
-
exception = assert_raises(NotImplementedError) do
|
27
|
-
ShopifyAPI::FulfillmentOrder.new(ActiveSupport::JSON.decode(fulfillment_order))
|
28
|
-
end
|
29
|
-
assert_equal(
|
30
|
-
"The minimum supported version is 2020-01.",
|
31
|
-
exception.message
|
32
|
-
)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
context ".find and .all" do
|
37
|
-
should "raise NotImplementedError when api_version is older than 2020-01" do
|
38
|
-
@url_prefix = url_prefix_for_activated_session_for('2019-10')
|
39
|
-
|
40
|
-
fake(
|
41
|
-
'fulfillment_orders',
|
42
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021.json",
|
43
|
-
method: :get,
|
44
|
-
body: load_fixture('fulfillment_order')
|
45
|
-
)
|
46
|
-
exception = assert_raises(NotImplementedError) do
|
47
|
-
ShopifyAPI::FulfillmentOrder.find(519788021)
|
48
|
-
end
|
49
|
-
assert_equal(
|
50
|
-
"The minimum supported version is 2020-01.",
|
51
|
-
exception.message
|
52
|
-
)
|
53
|
-
|
54
|
-
assert_raises(NotImplementedError) do
|
55
|
-
ShopifyAPI::FulfillmentOrder.all(params: { order_id: 450789469 })
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
context "#find" do
|
61
|
-
should "be able to find fulfillment order" do
|
62
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
63
|
-
assert(fulfillment_order.is_a?(ShopifyAPI::FulfillmentOrder))
|
64
|
-
assert_equal(519788021, fulfillment_order.id)
|
65
|
-
assert_equal(450789469, fulfillment_order.order_id)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
context "#all" do
|
70
|
-
should "be able to list fulfillment orders for an order" do
|
71
|
-
fake(
|
72
|
-
'orders',
|
73
|
-
url: "#{@url_prefix}/orders/450789469/fulfillment_orders.json",
|
74
|
-
method: :get,
|
75
|
-
body: load_fixture('fulfillment_orders')
|
76
|
-
)
|
77
|
-
fulfillment_orders = ShopifyAPI::FulfillmentOrder.all(
|
78
|
-
params: { order_id: 450789469 }
|
79
|
-
)
|
80
|
-
|
81
|
-
assert_equal([519788021, 519788022], fulfillment_orders.map(&:id).sort)
|
82
|
-
fulfillment_orders.each do |fulfillment_order|
|
83
|
-
assert(fulfillment_order.is_a?(ShopifyAPI::FulfillmentOrder))
|
84
|
-
assert_equal(450789469, fulfillment_order.order_id)
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
should "require order_id" do
|
89
|
-
assert_raises(ShopifyAPI::ValidationException) do
|
90
|
-
ShopifyAPI::FulfillmentOrder.all
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
context "#fulfillments" do
|
96
|
-
should "be able to list fulfillments for a fulfillment order" do
|
97
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
98
|
-
fake(
|
99
|
-
'fulfillment_orders',
|
100
|
-
url: "#{@url_prefix}/fulfillment_orders/#{fulfillment_order.id}/fulfillments.json",
|
101
|
-
method: :get,
|
102
|
-
body: load_fixture('fulfillments')
|
103
|
-
)
|
104
|
-
fulfillments = fulfillment_order.fulfillments
|
105
|
-
|
106
|
-
assert_equal(1, fulfillments.count)
|
107
|
-
fulfillment = fulfillments.first
|
108
|
-
assert(fulfillment.is_a?(ShopifyAPI::Fulfillment))
|
109
|
-
assert_equal(450789469, fulfillment.order_id)
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
context "#locations_for_move" do
|
114
|
-
should "be able to list locations for a fulfillment order" do
|
115
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
116
|
-
fake(
|
117
|
-
'fulfillment_orders',
|
118
|
-
url: "#{@url_prefix}/fulfillment_orders/#{fulfillment_order.id}/locations_for_move.json",
|
119
|
-
method: :get,
|
120
|
-
body: load_fixture('fulfillment_order_locations_for_move')
|
121
|
-
)
|
122
|
-
locations_for_move = fulfillment_order.locations_for_move
|
123
|
-
|
124
|
-
assert_equal(2, locations_for_move.count)
|
125
|
-
location_for_move = locations_for_move.first
|
126
|
-
assert(location_for_move.is_a?(ShopifyAPI::FulfillmentOrderLocationsForMove))
|
127
|
-
|
128
|
-
location = location_for_move.location
|
129
|
-
assert(location.is_a?(ShopifyAPI::Location))
|
130
|
-
assert_equal(1059367776, location.id)
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
context "#move" do
|
135
|
-
should "move a fulfillment order to a new_location_id" do
|
136
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
137
|
-
new_location_id = 5
|
138
|
-
|
139
|
-
fake_original_fulfillment_order = fulfillment_order.clone
|
140
|
-
fake_original_fulfillment_order.status = 'closed'
|
141
|
-
fake_moved_fulfillment_order = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
142
|
-
fake_moved_fulfillment_order['assigned_location_id'] = new_location_id
|
143
|
-
|
144
|
-
request_body = { fulfillment_order: { new_location_id: 5 } }
|
145
|
-
body = {
|
146
|
-
original_fulfillment_order: fake_original_fulfillment_order,
|
147
|
-
moved_fulfillment_order: fake_moved_fulfillment_order,
|
148
|
-
remaining_fulfillment_order: nil,
|
149
|
-
}
|
150
|
-
fake(
|
151
|
-
'fulfillment_orders',
|
152
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/move.json",
|
153
|
-
method: :post,
|
154
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
155
|
-
body: ActiveSupport::JSON.encode(body)
|
156
|
-
)
|
157
|
-
response_fulfillment_orders = fulfillment_order.move(new_location_id: new_location_id)
|
158
|
-
|
159
|
-
assert_equal('closed', fulfillment_order.status)
|
160
|
-
|
161
|
-
assert_equal(3, response_fulfillment_orders.count)
|
162
|
-
original_fulfillment_order = response_fulfillment_orders['original_fulfillment_order']
|
163
|
-
refute_nil original_fulfillment_order
|
164
|
-
assert(original_fulfillment_order.is_a?(ShopifyAPI::FulfillmentOrder))
|
165
|
-
assert_equal('closed', original_fulfillment_order.status)
|
166
|
-
|
167
|
-
moved_fulfillment_order = response_fulfillment_orders['moved_fulfillment_order']
|
168
|
-
refute_nil moved_fulfillment_order
|
169
|
-
assert(moved_fulfillment_order.is_a?(ShopifyAPI::FulfillmentOrder))
|
170
|
-
assert_equal('open', moved_fulfillment_order.status)
|
171
|
-
assert_equal(new_location_id, moved_fulfillment_order.assigned_location_id)
|
172
|
-
|
173
|
-
remaining_fulfillment_order = response_fulfillment_orders['remaining_fulfillment_order']
|
174
|
-
assert_nil(remaining_fulfillment_order)
|
175
|
-
end
|
176
|
-
end
|
177
|
-
|
178
|
-
context "#cancel" do
|
179
|
-
should "cancel a fulfillment order" do
|
180
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
181
|
-
assert_equal('open', fulfillment_order.status)
|
182
|
-
|
183
|
-
cancelled = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
184
|
-
cancelled['status'] = 'cancelled'
|
185
|
-
body = {
|
186
|
-
fulfillment_order: cancelled,
|
187
|
-
replacement_fulfillment_order: fulfillment_order,
|
188
|
-
}
|
189
|
-
fake(
|
190
|
-
'fulfillment_orders',
|
191
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/cancel.json",
|
192
|
-
method: :post,
|
193
|
-
body: ActiveSupport::JSON.encode(body)
|
194
|
-
)
|
195
|
-
response_fulfillment_orders = fulfillment_order.cancel
|
196
|
-
|
197
|
-
assert_equal('cancelled', fulfillment_order.status)
|
198
|
-
assert_equal(2, response_fulfillment_orders.count)
|
199
|
-
fulfillment_order = response_fulfillment_orders['fulfillment_order']
|
200
|
-
assert_equal('cancelled', fulfillment_order.status)
|
201
|
-
replacement_fulfillment_order = response_fulfillment_orders['replacement_fulfillment_order']
|
202
|
-
assert_equal('open', replacement_fulfillment_order.status)
|
203
|
-
end
|
204
|
-
end
|
205
|
-
|
206
|
-
context "#close" do
|
207
|
-
should "be able to close fulfillment order" do
|
208
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
209
|
-
fulfillment_order.status = 'in_progress'
|
210
|
-
|
211
|
-
closed = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
212
|
-
closed['status'] = 'incomplete'
|
213
|
-
request_body = {
|
214
|
-
fulfillment_order: {
|
215
|
-
message: "Test close message.",
|
216
|
-
},
|
217
|
-
}
|
218
|
-
fake(
|
219
|
-
'fulfillment_orders',
|
220
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/close.json",
|
221
|
-
method: :post,
|
222
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
223
|
-
body: ActiveSupport::JSON.encode(closed)
|
224
|
-
)
|
225
|
-
assert(fulfillment_order.close(message: "Test close message."))
|
226
|
-
assert_equal('incomplete', fulfillment_order.status)
|
227
|
-
end
|
228
|
-
end
|
229
|
-
|
230
|
-
context "#open" do
|
231
|
-
should "be able to open fulfillment order" do
|
232
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
233
|
-
fulfillment_order.status = 'scheduled'
|
234
|
-
|
235
|
-
opened = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
236
|
-
opened['status'] = 'open'
|
237
|
-
body = {
|
238
|
-
fulfillment_order: opened,
|
239
|
-
}
|
240
|
-
|
241
|
-
fake(
|
242
|
-
'fulfillment_orders',
|
243
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/open.json",
|
244
|
-
method: :post,
|
245
|
-
body: ActiveSupport::JSON.encode(body)
|
246
|
-
)
|
247
|
-
assert(fulfillment_order.open)
|
248
|
-
assert_equal('open', fulfillment_order.status)
|
249
|
-
end
|
250
|
-
end
|
251
|
-
|
252
|
-
context "#reschedule" do
|
253
|
-
should "be able to rescheduled fulfillment order" do
|
254
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
255
|
-
fulfillment_order.status = 'scheduled'
|
256
|
-
new_fulfill_at = "2021-11-29"
|
257
|
-
|
258
|
-
rescheduled = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
259
|
-
rescheduled['status'] = 'scheduled'
|
260
|
-
rescheduled['fulfill_at'] = new_fulfill_at
|
261
|
-
body = {
|
262
|
-
fulfillment_order: rescheduled,
|
263
|
-
}
|
264
|
-
|
265
|
-
request_body = { fulfillment_order: { new_fulfill_at: new_fulfill_at } }
|
266
|
-
|
267
|
-
fake(
|
268
|
-
'fulfillment_orders',
|
269
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/reschedule.json",
|
270
|
-
method: :post,
|
271
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
272
|
-
body: ActiveSupport::JSON.encode(body)
|
273
|
-
)
|
274
|
-
|
275
|
-
assert(fulfillment_order.reschedule(new_fulfill_at: new_fulfill_at))
|
276
|
-
assert_equal('scheduled', fulfillment_order.status)
|
277
|
-
assert_equal(new_fulfill_at, fulfillment_order.fulfill_at)
|
278
|
-
end
|
279
|
-
end
|
280
|
-
|
281
|
-
context "#request_fulfillment" do
|
282
|
-
should "make a fulfillment request for a fulfillment order including unsubmitted" do
|
283
|
-
fake_original_fulfillment_order = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
284
|
-
fake_original_fulfillment_order['status'] = 'closed'
|
285
|
-
fake_submitted_fulfillment_order = fake_original_fulfillment_order.clone
|
286
|
-
fake_submitted_fulfillment_order['id'] = 2
|
287
|
-
fake_submitted_fulfillment_order['status'] = 'open'
|
288
|
-
fake_submitted_fulfillment_order['request_status'] = 'submitted'
|
289
|
-
fake_unsubmitted_fulfillment_order = fake_original_fulfillment_order.clone
|
290
|
-
fake_unsubmitted_fulfillment_order['id'] = 3
|
291
|
-
fake_unsubmitted_fulfillment_order['status'] = 'open'
|
292
|
-
fake_unsubmitted_fulfillment_order['request_status'] = 'unsubmitted'
|
293
|
-
body = {
|
294
|
-
original_fulfillment_order: fake_original_fulfillment_order,
|
295
|
-
submitted_fulfillment_order: fake_submitted_fulfillment_order,
|
296
|
-
unsubmitted_fulfillment_order: fake_unsubmitted_fulfillment_order,
|
297
|
-
}
|
298
|
-
request_body = {
|
299
|
-
fulfillment_request: {
|
300
|
-
fulfillment_order_line_items: [
|
301
|
-
{ id: 1, quantity: 1 },
|
302
|
-
],
|
303
|
-
message: 'Fulfill this FO, please.',
|
304
|
-
},
|
305
|
-
}
|
306
|
-
fake(
|
307
|
-
'fulfillment_orders',
|
308
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/fulfillment_request.json",
|
309
|
-
method: :post,
|
310
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
311
|
-
body: ActiveSupport::JSON.encode(body)
|
312
|
-
)
|
313
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
314
|
-
params = {
|
315
|
-
fulfillment_order_line_items: [{ id: 1, quantity: 1 }],
|
316
|
-
message: "Fulfill this FO, please.",
|
317
|
-
}
|
318
|
-
response_fulfillment_orders = fulfillment_order.request_fulfillment(**params)
|
319
|
-
|
320
|
-
assert_equal('closed', fulfillment_order.status)
|
321
|
-
assert_equal(3, response_fulfillment_orders.size)
|
322
|
-
|
323
|
-
original_fulfillment_order = response_fulfillment_orders['original_fulfillment_order']
|
324
|
-
assert_equal(519788021, original_fulfillment_order.id)
|
325
|
-
assert_equal('closed', original_fulfillment_order.status)
|
326
|
-
|
327
|
-
submitted_fulfillment_order = response_fulfillment_orders['submitted_fulfillment_order']
|
328
|
-
assert_equal(2, submitted_fulfillment_order.id)
|
329
|
-
assert_equal('open', submitted_fulfillment_order.status)
|
330
|
-
assert_equal('submitted', submitted_fulfillment_order.request_status)
|
331
|
-
|
332
|
-
unsubmitted_fulfillment_order = response_fulfillment_orders['unsubmitted_fulfillment_order']
|
333
|
-
assert_equal(3, unsubmitted_fulfillment_order.id)
|
334
|
-
assert_equal('open', unsubmitted_fulfillment_order.status)
|
335
|
-
assert_equal('unsubmitted', unsubmitted_fulfillment_order.request_status)
|
336
|
-
end
|
337
|
-
|
338
|
-
should "make a fulfillment request for a fulfillment order excluding unsubmitted" do
|
339
|
-
fake_original_fulfillment_order = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
340
|
-
fake_original_fulfillment_order['status'] = 'closed'
|
341
|
-
fake_submitted_fulfillment_order = fake_original_fulfillment_order.clone
|
342
|
-
fake_submitted_fulfillment_order['id'] = 2
|
343
|
-
fake_submitted_fulfillment_order['status'] = 'open'
|
344
|
-
fake_submitted_fulfillment_order['request_status'] = 'submitted'
|
345
|
-
body = {
|
346
|
-
original_fulfillment_order: fake_original_fulfillment_order,
|
347
|
-
submitted_fulfillment_order: fake_submitted_fulfillment_order,
|
348
|
-
unsubmitted_fulfillment_order: nil,
|
349
|
-
}
|
350
|
-
request_body = {
|
351
|
-
fulfillment_request: {
|
352
|
-
fulfillment_order_line_items: [
|
353
|
-
{ id: 1, quantity: 1 },
|
354
|
-
],
|
355
|
-
message: 'Fulfill this FO, please.',
|
356
|
-
},
|
357
|
-
}
|
358
|
-
fake(
|
359
|
-
'fulfillment_orders',
|
360
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/fulfillment_request.json",
|
361
|
-
method: :post,
|
362
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
363
|
-
body: ActiveSupport::JSON.encode(body)
|
364
|
-
)
|
365
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
366
|
-
params = {
|
367
|
-
fulfillment_order_line_items: [{ id: 1, quantity: 1 }],
|
368
|
-
message: "Fulfill this FO, please.",
|
369
|
-
}
|
370
|
-
response_fulfillment_orders = fulfillment_order.request_fulfillment(**params)
|
371
|
-
|
372
|
-
assert_equal('closed', fulfillment_order.status)
|
373
|
-
assert_equal(3, response_fulfillment_orders.size)
|
374
|
-
|
375
|
-
original_fulfillment_order = response_fulfillment_orders['original_fulfillment_order']
|
376
|
-
assert_equal(519788021, original_fulfillment_order.id)
|
377
|
-
assert_equal('closed', original_fulfillment_order.status)
|
378
|
-
|
379
|
-
submitted_fulfillment_order = response_fulfillment_orders['submitted_fulfillment_order']
|
380
|
-
assert_equal(2, submitted_fulfillment_order.id)
|
381
|
-
assert_equal('open', submitted_fulfillment_order.status)
|
382
|
-
assert_equal('submitted', submitted_fulfillment_order.request_status)
|
383
|
-
|
384
|
-
assert_nil(response_fulfillment_orders['unsubmitted_fulfillment_order'])
|
385
|
-
end
|
386
|
-
end
|
387
|
-
|
388
|
-
context "#accept_fulfillment_request" do
|
389
|
-
should "accept a fulfillment request for a fulfillment order" do
|
390
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
391
|
-
|
392
|
-
message = "LGTM. Accept this FO fulfillment request"
|
393
|
-
request_body = {
|
394
|
-
'fulfillment_request' => {
|
395
|
-
'message' => message,
|
396
|
-
},
|
397
|
-
}
|
398
|
-
fake_response = {
|
399
|
-
fulfillment_order: fulfillment_order.attributes.merge(status: 'in_progress', request_status: 'accepted'),
|
400
|
-
}
|
401
|
-
fake(
|
402
|
-
'fulfillment_orders',
|
403
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/fulfillment_request/accept.json",
|
404
|
-
method: :post,
|
405
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
406
|
-
body: ActiveSupport::JSON.encode(fake_response)
|
407
|
-
)
|
408
|
-
accepted = fulfillment_order.accept_fulfillment_request(message: message)
|
409
|
-
|
410
|
-
assert_equal(true, accepted)
|
411
|
-
assert_equal('in_progress', fulfillment_order.status)
|
412
|
-
assert_equal('accepted', fulfillment_order.request_status)
|
413
|
-
end
|
414
|
-
end
|
415
|
-
|
416
|
-
context "#reject_fulfillment_request" do
|
417
|
-
should "reject a fulfillment request for a fulfillment order" do
|
418
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
419
|
-
|
420
|
-
message = "LBTM. Reject this FO fulfillment request"
|
421
|
-
request_body = {
|
422
|
-
'fulfillment_request' => {
|
423
|
-
'message' => message,
|
424
|
-
},
|
425
|
-
}
|
426
|
-
fake_response = {
|
427
|
-
fulfillment_order: fulfillment_order.attributes.merge(status: 'open', request_status: 'rejected'),
|
428
|
-
}
|
429
|
-
fake(
|
430
|
-
'fulfillment_orders',
|
431
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/fulfillment_request/reject.json",
|
432
|
-
method: :post,
|
433
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
434
|
-
body: ActiveSupport::JSON.encode(fake_response)
|
435
|
-
)
|
436
|
-
rejected = fulfillment_order.reject_fulfillment_request(message: message)
|
437
|
-
|
438
|
-
assert_equal(true, rejected)
|
439
|
-
assert_equal('open', fulfillment_order.status)
|
440
|
-
assert_equal('rejected', fulfillment_order.request_status)
|
441
|
-
end
|
442
|
-
end
|
443
|
-
|
444
|
-
context "#request_cancellation" do
|
445
|
-
should "make a cancellation request for a fulfillment order" do
|
446
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
447
|
-
|
448
|
-
message = "Cancelling this please."
|
449
|
-
request_body = {
|
450
|
-
'cancellation_request' => {
|
451
|
-
'message' => message,
|
452
|
-
},
|
453
|
-
}
|
454
|
-
cancelling = ActiveSupport::JSON.decode(load_fixture('fulfillment_order'))
|
455
|
-
cancelling['status'] = 'in_progress'
|
456
|
-
cancelling['request_status'] = 'cancellation_requested'
|
457
|
-
fake(
|
458
|
-
'fulfillment_orders',
|
459
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/cancellation_request.json",
|
460
|
-
method: :post,
|
461
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
462
|
-
body: ActiveSupport::JSON.encode({ fulfillment_order: cancelling })
|
463
|
-
)
|
464
|
-
cancelled = fulfillment_order.request_cancellation(message: "Cancelling this please.")
|
465
|
-
|
466
|
-
assert_equal(true, cancelled)
|
467
|
-
assert_equal('in_progress', fulfillment_order.status)
|
468
|
-
assert_equal('cancellation_requested', fulfillment_order.request_status)
|
469
|
-
end
|
470
|
-
end
|
471
|
-
|
472
|
-
context "#accept_cancellation_request" do
|
473
|
-
should "accept a cancellation request for a fulfillment order" do
|
474
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
475
|
-
|
476
|
-
message = 'Already in-progress. Reject this FO cancellation request'
|
477
|
-
request_body = {
|
478
|
-
'cancellation_request' => {
|
479
|
-
'message' => message,
|
480
|
-
},
|
481
|
-
}
|
482
|
-
fake_response = {
|
483
|
-
fulfillment_order: fulfillment_order.attributes.merge(status: 'cancelled',
|
484
|
-
request_status: 'cancellation_accepted'),
|
485
|
-
}
|
486
|
-
fake(
|
487
|
-
'fulfillment_orders',
|
488
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/cancellation_request/accept.json",
|
489
|
-
method: :post,
|
490
|
-
request_body: ActiveSupport::JSON.encode(request_body),
|
491
|
-
body: ActiveSupport::JSON.encode(fake_response)
|
492
|
-
)
|
493
|
-
accepted = fulfillment_order.accept_cancellation_request(message: message)
|
494
|
-
|
495
|
-
assert_equal(true, accepted)
|
496
|
-
assert_equal('cancelled', fulfillment_order.status)
|
497
|
-
assert_equal('cancellation_accepted', fulfillment_order.request_status)
|
498
|
-
end
|
499
|
-
end
|
500
|
-
|
501
|
-
context "#reject_cancellation_request" do
|
502
|
-
should "reject a cancellation request for a fulfillment order" do
|
503
|
-
fulfillment_order = ShopifyAPI::FulfillmentOrder.find(519788021)
|
504
|
-
|
505
|
-
message = "Already in-progress. Reject this FO cancellation request"
|
506
|
-
request_body = {
|
507
|
-
'cancellation_request' => {
|
508
|
-
'message' => message,
|
509
|
-
},
|
510
|
-
}
|
511
|
-
fake_response = {
|
512
|
-
fulfillment_order: fulfillment_order.attributes.merge(status: 'in_progress',
|
513
|
-
request_status: 'cancellation_rejected'),
|
514
|
-
}
|
515
|
-
fake(
|
516
|
-
'fulfillment_orders',
|
517
|
-
url: "#{@url_prefix}/fulfillment_orders/519788021/cancellation_request/reject.json",
|
518
|
-
method: :post,
|
519
|
-
request_body: request_body,
|
520
|
-
body: ActiveSupport::JSON.encode(fake_response)
|
521
|
-
)
|
522
|
-
rejected = fulfillment_order.reject_cancellation_request(message: message)
|
523
|
-
|
524
|
-
assert_equal(true, rejected)
|
525
|
-
assert_equal('in_progress', fulfillment_order.status)
|
526
|
-
assert_equal('cancellation_rejected', fulfillment_order.request_status)
|
527
|
-
end
|
528
|
-
end
|
529
|
-
end
|
530
|
-
end
|
@@ -1,8 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
module FulfillmentOrderTestHelper
|
3
|
-
def url_prefix_for_activated_session_for(version)
|
4
|
-
available_version = ShopifyAPI::Session.new(domain: 'shop2.myshopify.com', token: 'token2', api_version: version)
|
5
|
-
ShopifyAPI::Base.activate_session(available_version)
|
6
|
-
"https://shop2.myshopify.com/admin/api/#{version}"
|
7
|
-
end
|
8
|
-
end
|
@@ -1,35 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class FulFillmentRequestTest < Test::Unit::TestCase
|
5
|
-
def setup
|
6
|
-
super
|
7
|
-
fake("orders/450789469/fulfillment_requests/695890229", method: :get, body: load_fixture('fulfillment_request'))
|
8
|
-
end
|
9
|
-
|
10
|
-
context "#mark_as_failed" do
|
11
|
-
should "be able to mark_as_failed a fulfillment request" do
|
12
|
-
fulfillment_request = ShopifyAPI::FulfillmentRequest.find(695890229, params: { order_id: 450789469 })
|
13
|
-
|
14
|
-
cancelled = ActiveSupport::JSON.decode(load_fixture('fulfillment_request'))
|
15
|
-
cancelled['failure_message'] = 'failure reason'
|
16
|
-
cancelled['message'] = nil
|
17
|
-
fake(
|
18
|
-
"orders/450789469/fulfillment_requests/695890229/mark_as_failed",
|
19
|
-
method: :put,
|
20
|
-
body: ActiveSupport::JSON.encode(cancelled)
|
21
|
-
)
|
22
|
-
assert(fulfillment_request.failure_message.blank?)
|
23
|
-
assert(fulfillment_request.mark_as_failed)
|
24
|
-
assert_equal('failure reason', fulfillment_request.failure_message)
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
context "#find" do
|
29
|
-
should "be able to find fulfillment request" do
|
30
|
-
fulfillment_request = ShopifyAPI::FulfillmentRequest.find(695890229, params: { order_id: 450789469 })
|
31
|
-
assert_equal(695890229, fulfillment_request.id)
|
32
|
-
assert_equal(450789469, fulfillment_request.order_id)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'test_helper'
|
3
|
-
|
4
|
-
class FulFillmentServiceTest < Test::Unit::TestCase
|
5
|
-
test 'new should create fulfillment service' do
|
6
|
-
fake("fulfillment_services", method: :post, body: load_fixture('fulfillment_service'))
|
7
|
-
fulfillment_service = ShopifyAPI::FulfillmentService.new(name: "SomeService")
|
8
|
-
fulfillment_service.save
|
9
|
-
assert_equal("SomeService", fulfillment_service.name)
|
10
|
-
end
|
11
|
-
|
12
|
-
test 'find should return the fulfillment service' do
|
13
|
-
fake("fulfillment_services/123456", method: :get, body: load_fixture('fulfillment_service'))
|
14
|
-
fulfillment_service = ShopifyAPI::FulfillmentService.find(123456)
|
15
|
-
assert_equal(123456, fulfillment_service.id)
|
16
|
-
assert_equal("SomeService", fulfillment_service.name)
|
17
|
-
end
|
18
|
-
end
|