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
@@ -0,0 +1,844 @@
|
|
1
|
+
# typed: true
|
2
|
+
|
3
|
+
# DO NOT EDIT MANUALLY
|
4
|
+
# This is an autogenerated file for types exported from the `thor` gem.
|
5
|
+
# Please instead update this file by running `bin/tapioca gem thor`.
|
6
|
+
|
7
|
+
class Thor
|
8
|
+
include ::Thor::Base
|
9
|
+
include ::Thor::Invocation
|
10
|
+
include ::Thor::Shell
|
11
|
+
extend ::Thor::Base::ClassMethods
|
12
|
+
extend ::Thor::Invocation::ClassMethods
|
13
|
+
|
14
|
+
def help(command = T.unsafe(nil), subcommand = T.unsafe(nil)); end
|
15
|
+
|
16
|
+
class << self
|
17
|
+
def check_unknown_options!(options = T.unsafe(nil)); end
|
18
|
+
def check_unknown_options?(config); end
|
19
|
+
def command_help(shell, command_name); end
|
20
|
+
def default_command(meth = T.unsafe(nil)); end
|
21
|
+
def default_task(meth = T.unsafe(nil)); end
|
22
|
+
def deprecation_warning(message); end
|
23
|
+
def desc(usage, description, options = T.unsafe(nil)); end
|
24
|
+
def disable_required_check!(*command_names); end
|
25
|
+
def disable_required_check?(command); end
|
26
|
+
def help(shell, subcommand = T.unsafe(nil)); end
|
27
|
+
def long_desc(long_description, options = T.unsafe(nil)); end
|
28
|
+
def map(mappings = T.unsafe(nil), **kw); end
|
29
|
+
def method_option(name, options = T.unsafe(nil)); end
|
30
|
+
def method_options(options = T.unsafe(nil)); end
|
31
|
+
def option(name, options = T.unsafe(nil)); end
|
32
|
+
def options(options = T.unsafe(nil)); end
|
33
|
+
def package_name(name, _ = T.unsafe(nil)); end
|
34
|
+
def printable_commands(all = T.unsafe(nil), subcommand = T.unsafe(nil)); end
|
35
|
+
def printable_tasks(all = T.unsafe(nil), subcommand = T.unsafe(nil)); end
|
36
|
+
def register(klass, subcommand_name, usage, description, options = T.unsafe(nil)); end
|
37
|
+
def stop_on_unknown_option!(*command_names); end
|
38
|
+
def stop_on_unknown_option?(command); end
|
39
|
+
def subcommand(subcommand, subcommand_class); end
|
40
|
+
def subcommand_classes; end
|
41
|
+
def subcommands; end
|
42
|
+
def subtask(subcommand, subcommand_class); end
|
43
|
+
def subtasks; end
|
44
|
+
def task_help(shell, command_name); end
|
45
|
+
|
46
|
+
protected
|
47
|
+
|
48
|
+
def banner(command, namespace = T.unsafe(nil), subcommand = T.unsafe(nil)); end
|
49
|
+
def baseclass; end
|
50
|
+
def create_command(meth); end
|
51
|
+
def create_task(meth); end
|
52
|
+
def disable_required_check; end
|
53
|
+
def dispatch(meth, given_args, given_opts, config); end
|
54
|
+
def dynamic_command_class; end
|
55
|
+
def find_command_possibilities(meth); end
|
56
|
+
def find_task_possibilities(meth); end
|
57
|
+
def initialize_added; end
|
58
|
+
def normalize_command_name(meth); end
|
59
|
+
def normalize_task_name(meth); end
|
60
|
+
def retrieve_command_name(args); end
|
61
|
+
def retrieve_task_name(args); end
|
62
|
+
def stop_on_unknown_option; end
|
63
|
+
def subcommand_help(cmd); end
|
64
|
+
def subtask_help(cmd); end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
module Thor::Actions
|
69
|
+
mixes_in_class_methods ::Thor::Actions::ClassMethods
|
70
|
+
|
71
|
+
def initialize(args = T.unsafe(nil), options = T.unsafe(nil), config = T.unsafe(nil)); end
|
72
|
+
|
73
|
+
def action(instance); end
|
74
|
+
def add_file(destination, *args, &block); end
|
75
|
+
def add_link(destination, *args); end
|
76
|
+
def append_file(path, *args, &block); end
|
77
|
+
def append_to_file(path, *args, &block); end
|
78
|
+
def apply(path, config = T.unsafe(nil)); end
|
79
|
+
def behavior; end
|
80
|
+
def behavior=(_arg0); end
|
81
|
+
def chmod(path, mode, config = T.unsafe(nil)); end
|
82
|
+
def comment_lines(path, flag, *args); end
|
83
|
+
def copy_file(source, *args, &block); end
|
84
|
+
def create_file(destination, *args, &block); end
|
85
|
+
def create_link(destination, *args); end
|
86
|
+
def destination_root; end
|
87
|
+
def destination_root=(root); end
|
88
|
+
def directory(source, *args, &block); end
|
89
|
+
def empty_directory(destination, config = T.unsafe(nil)); end
|
90
|
+
def find_in_source_paths(file); end
|
91
|
+
def get(source, *args, &block); end
|
92
|
+
def gsub_file(path, flag, *args, &block); end
|
93
|
+
def in_root; end
|
94
|
+
def inject_into_class(path, klass, *args, &block); end
|
95
|
+
def inject_into_file(destination, *args, &block); end
|
96
|
+
def inject_into_module(path, module_name, *args, &block); end
|
97
|
+
def insert_into_file(destination, *args, &block); end
|
98
|
+
def inside(dir = T.unsafe(nil), config = T.unsafe(nil), &block); end
|
99
|
+
def link_file(source, *args); end
|
100
|
+
def prepend_file(path, *args, &block); end
|
101
|
+
def prepend_to_file(path, *args, &block); end
|
102
|
+
def relative_to_original_destination_root(path, remove_dot = T.unsafe(nil)); end
|
103
|
+
def remove_dir(path, config = T.unsafe(nil)); end
|
104
|
+
def remove_file(path, config = T.unsafe(nil)); end
|
105
|
+
def run(command, config = T.unsafe(nil)); end
|
106
|
+
def run_ruby_script(command, config = T.unsafe(nil)); end
|
107
|
+
def source_paths; end
|
108
|
+
def template(source, *args, &block); end
|
109
|
+
def thor(command, *args); end
|
110
|
+
def uncomment_lines(path, flag, *args); end
|
111
|
+
|
112
|
+
protected
|
113
|
+
|
114
|
+
def _cleanup_options_and_set(options, key); end
|
115
|
+
def _shared_configuration; end
|
116
|
+
|
117
|
+
private
|
118
|
+
|
119
|
+
def capture(*args); end
|
120
|
+
def concat(string); end
|
121
|
+
def output_buffer; end
|
122
|
+
def output_buffer=(_arg0); end
|
123
|
+
def with_output_buffer(buf = T.unsafe(nil)); end
|
124
|
+
|
125
|
+
class << self
|
126
|
+
def included(base); end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
class Thor::Actions::CapturableERB < ::ERB
|
131
|
+
def set_eoutvar(compiler, eoutvar = T.unsafe(nil)); end
|
132
|
+
end
|
133
|
+
|
134
|
+
module Thor::Actions::ClassMethods
|
135
|
+
def add_runtime_options!; end
|
136
|
+
def source_paths; end
|
137
|
+
def source_paths_for_search; end
|
138
|
+
def source_root(path = T.unsafe(nil)); end
|
139
|
+
end
|
140
|
+
|
141
|
+
class Thor::Actions::CreateFile < ::Thor::Actions::EmptyDirectory
|
142
|
+
def initialize(base, destination, data, config = T.unsafe(nil)); end
|
143
|
+
|
144
|
+
def data; end
|
145
|
+
def identical?; end
|
146
|
+
def invoke!; end
|
147
|
+
def render; end
|
148
|
+
|
149
|
+
protected
|
150
|
+
|
151
|
+
def force_on_collision?; end
|
152
|
+
def force_or_skip_or_conflict(force, skip, &block); end
|
153
|
+
def on_conflict_behavior(&block); end
|
154
|
+
end
|
155
|
+
|
156
|
+
class Thor::Actions::CreateLink < ::Thor::Actions::CreateFile
|
157
|
+
def data; end
|
158
|
+
def exists?; end
|
159
|
+
def identical?; end
|
160
|
+
def invoke!; end
|
161
|
+
end
|
162
|
+
|
163
|
+
class Thor::Actions::Directory < ::Thor::Actions::EmptyDirectory
|
164
|
+
def initialize(base, source, destination = T.unsafe(nil), config = T.unsafe(nil), &block); end
|
165
|
+
|
166
|
+
def invoke!; end
|
167
|
+
def revoke!; end
|
168
|
+
def source; end
|
169
|
+
|
170
|
+
protected
|
171
|
+
|
172
|
+
def execute!; end
|
173
|
+
def file_level_lookup(previous_lookup); end
|
174
|
+
def files(lookup); end
|
175
|
+
end
|
176
|
+
|
177
|
+
class Thor::Actions::EmptyDirectory
|
178
|
+
def initialize(base, destination, config = T.unsafe(nil)); end
|
179
|
+
|
180
|
+
def base; end
|
181
|
+
def config; end
|
182
|
+
def destination; end
|
183
|
+
def exists?; end
|
184
|
+
def given_destination; end
|
185
|
+
def invoke!; end
|
186
|
+
def relative_destination; end
|
187
|
+
def revoke!; end
|
188
|
+
|
189
|
+
protected
|
190
|
+
|
191
|
+
def convert_encoded_instructions(filename); end
|
192
|
+
def destination=(destination); end
|
193
|
+
def invoke_with_conflict_check(&block); end
|
194
|
+
def on_conflict_behavior; end
|
195
|
+
def on_file_clash_behavior; end
|
196
|
+
def pretend?; end
|
197
|
+
def say_status(status, color); end
|
198
|
+
end
|
199
|
+
|
200
|
+
class Thor::Actions::InjectIntoFile < ::Thor::Actions::EmptyDirectory
|
201
|
+
def initialize(base, destination, data, config); end
|
202
|
+
|
203
|
+
def behavior; end
|
204
|
+
def flag; end
|
205
|
+
def invoke!; end
|
206
|
+
def replacement; end
|
207
|
+
def revoke!; end
|
208
|
+
|
209
|
+
protected
|
210
|
+
|
211
|
+
def replace!(regexp, string, force); end
|
212
|
+
def say_status(behavior, warning: T.unsafe(nil), color: T.unsafe(nil)); end
|
213
|
+
end
|
214
|
+
|
215
|
+
Thor::Actions::WARNINGS = T.let(T.unsafe(nil), Hash)
|
216
|
+
class Thor::AmbiguousCommandError < ::Thor::Error; end
|
217
|
+
Thor::AmbiguousTaskError = Thor::AmbiguousCommandError
|
218
|
+
|
219
|
+
class Thor::Argument
|
220
|
+
def initialize(name, options = T.unsafe(nil)); end
|
221
|
+
|
222
|
+
def banner; end
|
223
|
+
def default; end
|
224
|
+
def description; end
|
225
|
+
def enum; end
|
226
|
+
def human_name; end
|
227
|
+
def name; end
|
228
|
+
def required; end
|
229
|
+
def required?; end
|
230
|
+
def show_default?; end
|
231
|
+
def type; end
|
232
|
+
def usage; end
|
233
|
+
|
234
|
+
protected
|
235
|
+
|
236
|
+
def default_banner; end
|
237
|
+
def valid_type?(type); end
|
238
|
+
def validate!; end
|
239
|
+
end
|
240
|
+
|
241
|
+
Thor::Argument::VALID_TYPES = T.let(T.unsafe(nil), Array)
|
242
|
+
|
243
|
+
class Thor::Arguments
|
244
|
+
def initialize(arguments = T.unsafe(nil)); end
|
245
|
+
|
246
|
+
def parse(args); end
|
247
|
+
def remaining; end
|
248
|
+
|
249
|
+
private
|
250
|
+
|
251
|
+
def check_requirement!; end
|
252
|
+
def current_is_value?; end
|
253
|
+
def last?; end
|
254
|
+
def no_or_skip?(arg); end
|
255
|
+
def parse_array(name); end
|
256
|
+
def parse_hash(name); end
|
257
|
+
def parse_numeric(name); end
|
258
|
+
def parse_string(name); end
|
259
|
+
def peek; end
|
260
|
+
def shift; end
|
261
|
+
def unshift(arg); end
|
262
|
+
|
263
|
+
class << self
|
264
|
+
def parse(*args); end
|
265
|
+
def split(args); end
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
269
|
+
Thor::Arguments::NUMERIC = T.let(T.unsafe(nil), Regexp)
|
270
|
+
|
271
|
+
module Thor::Base
|
272
|
+
include ::Thor::Invocation
|
273
|
+
include ::Thor::Shell
|
274
|
+
|
275
|
+
mixes_in_class_methods ::Thor::Base::ClassMethods
|
276
|
+
mixes_in_class_methods ::Thor::Invocation::ClassMethods
|
277
|
+
|
278
|
+
def initialize(args = T.unsafe(nil), local_options = T.unsafe(nil), config = T.unsafe(nil)); end
|
279
|
+
|
280
|
+
def args; end
|
281
|
+
def args=(_arg0); end
|
282
|
+
def options; end
|
283
|
+
def options=(_arg0); end
|
284
|
+
def parent_options; end
|
285
|
+
def parent_options=(_arg0); end
|
286
|
+
|
287
|
+
class << self
|
288
|
+
def included(base); end
|
289
|
+
def register_klass_file(klass); end
|
290
|
+
def shell; end
|
291
|
+
def shell=(_arg0); end
|
292
|
+
def subclass_files; end
|
293
|
+
def subclasses; end
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
module Thor::Base::ClassMethods
|
298
|
+
def all_commands; end
|
299
|
+
def all_tasks; end
|
300
|
+
def allow_incompatible_default_type!; end
|
301
|
+
def argument(name, options = T.unsafe(nil)); end
|
302
|
+
def arguments; end
|
303
|
+
def attr_accessor(*_arg0); end
|
304
|
+
def attr_reader(*_arg0); end
|
305
|
+
def attr_writer(*_arg0); end
|
306
|
+
def check_default_type; end
|
307
|
+
def check_default_type!; end
|
308
|
+
def check_unknown_options; end
|
309
|
+
def check_unknown_options!; end
|
310
|
+
def check_unknown_options?(config); end
|
311
|
+
def class_option(name, options = T.unsafe(nil)); end
|
312
|
+
def class_options(options = T.unsafe(nil)); end
|
313
|
+
def commands; end
|
314
|
+
def disable_required_check?(command_name); end
|
315
|
+
def exit_on_failure?; end
|
316
|
+
def group(name = T.unsafe(nil)); end
|
317
|
+
def handle_argument_error(command, error, args, arity); end
|
318
|
+
def handle_no_command_error(command, has_namespace = T.unsafe(nil)); end
|
319
|
+
def handle_no_task_error(command, has_namespace = T.unsafe(nil)); end
|
320
|
+
def namespace(name = T.unsafe(nil)); end
|
321
|
+
def no_commands(&block); end
|
322
|
+
def no_commands?; end
|
323
|
+
def no_commands_context; end
|
324
|
+
def no_tasks(&block); end
|
325
|
+
def public_command(*names); end
|
326
|
+
def public_task(*names); end
|
327
|
+
def remove_argument(*names); end
|
328
|
+
def remove_class_option(*names); end
|
329
|
+
def remove_command(*names); end
|
330
|
+
def remove_task(*names); end
|
331
|
+
def start(given_args = T.unsafe(nil), config = T.unsafe(nil)); end
|
332
|
+
def stop_on_unknown_option?(command_name); end
|
333
|
+
def strict_args_position; end
|
334
|
+
def strict_args_position!; end
|
335
|
+
def strict_args_position?(config); end
|
336
|
+
def tasks; end
|
337
|
+
|
338
|
+
protected
|
339
|
+
|
340
|
+
def baseclass; end
|
341
|
+
def basename; end
|
342
|
+
def build_option(name, options, scope); end
|
343
|
+
def build_options(options, scope); end
|
344
|
+
def class_options_help(shell, groups = T.unsafe(nil)); end
|
345
|
+
def create_command(meth); end
|
346
|
+
def create_task(meth); end
|
347
|
+
def dispatch(command, given_args, given_opts, config); end
|
348
|
+
def find_and_refresh_command(name); end
|
349
|
+
def find_and_refresh_task(name); end
|
350
|
+
def from_superclass(method, default = T.unsafe(nil)); end
|
351
|
+
def inherited(klass); end
|
352
|
+
def initialize_added; end
|
353
|
+
def is_thor_reserved_word?(word, type); end
|
354
|
+
def method_added(meth); end
|
355
|
+
def print_options(shell, options, group_name = T.unsafe(nil)); end
|
356
|
+
end
|
357
|
+
|
358
|
+
class Thor::Command < ::Struct
|
359
|
+
def initialize(name, description, long_description, usage, options = T.unsafe(nil)); end
|
360
|
+
|
361
|
+
def formatted_usage(klass, namespace = T.unsafe(nil), subcommand = T.unsafe(nil)); end
|
362
|
+
def hidden?; end
|
363
|
+
def run(instance, args = T.unsafe(nil)); end
|
364
|
+
|
365
|
+
protected
|
366
|
+
|
367
|
+
def handle_argument_error?(instance, error, caller); end
|
368
|
+
def handle_no_method_error?(instance, error, caller); end
|
369
|
+
def local_method?(instance, name); end
|
370
|
+
def not_debugging?(instance); end
|
371
|
+
def private_method?(instance); end
|
372
|
+
def public_method?(instance); end
|
373
|
+
def required_arguments_for(klass, usage); end
|
374
|
+
def required_options; end
|
375
|
+
def sans_backtrace(backtrace, caller); end
|
376
|
+
|
377
|
+
private
|
378
|
+
|
379
|
+
def initialize_copy(other); end
|
380
|
+
end
|
381
|
+
|
382
|
+
Thor::Command::FILE_REGEXP = T.let(T.unsafe(nil), Regexp)
|
383
|
+
module Thor::CoreExt; end
|
384
|
+
|
385
|
+
class Thor::CoreExt::HashWithIndifferentAccess < ::Hash
|
386
|
+
def initialize(hash = T.unsafe(nil)); end
|
387
|
+
|
388
|
+
def [](key); end
|
389
|
+
def []=(key, value); end
|
390
|
+
def delete(key); end
|
391
|
+
def except(*keys); end
|
392
|
+
def fetch(key, *args); end
|
393
|
+
def key?(key); end
|
394
|
+
def merge(other); end
|
395
|
+
def merge!(other); end
|
396
|
+
def replace(other_hash); end
|
397
|
+
def reverse_merge(other); end
|
398
|
+
def reverse_merge!(other_hash); end
|
399
|
+
def to_hash; end
|
400
|
+
def values_at(*indices); end
|
401
|
+
|
402
|
+
protected
|
403
|
+
|
404
|
+
def convert_key(key); end
|
405
|
+
def method_missing(method, *args); end
|
406
|
+
end
|
407
|
+
|
408
|
+
Thor::Correctable = DidYouMean::Correctable
|
409
|
+
|
410
|
+
class Thor::DynamicCommand < ::Thor::Command
|
411
|
+
def initialize(name, options = T.unsafe(nil)); end
|
412
|
+
|
413
|
+
def run(instance, args = T.unsafe(nil)); end
|
414
|
+
end
|
415
|
+
|
416
|
+
Thor::DynamicTask = Thor::DynamicCommand
|
417
|
+
class Thor::Error < ::StandardError; end
|
418
|
+
|
419
|
+
class Thor::Group
|
420
|
+
include ::Thor::Base
|
421
|
+
include ::Thor::Invocation
|
422
|
+
include ::Thor::Shell
|
423
|
+
extend ::Thor::Base::ClassMethods
|
424
|
+
extend ::Thor::Invocation::ClassMethods
|
425
|
+
|
426
|
+
protected
|
427
|
+
|
428
|
+
def _invoke_for_class_method(klass, command = T.unsafe(nil), *args, &block); end
|
429
|
+
|
430
|
+
class << self
|
431
|
+
def class_options_help(shell, groups = T.unsafe(nil)); end
|
432
|
+
def desc(description = T.unsafe(nil)); end
|
433
|
+
def get_options_from_invocations(group_options, base_options); end
|
434
|
+
def handle_argument_error(command, error, _args, arity); end
|
435
|
+
def help(shell); end
|
436
|
+
def invocation_blocks; end
|
437
|
+
def invocations; end
|
438
|
+
def invoke(*names, &block); end
|
439
|
+
def invoke_from_option(*names, &block); end
|
440
|
+
def printable_commands(*_arg0); end
|
441
|
+
def printable_tasks(*_arg0); end
|
442
|
+
def remove_invocation(*names); end
|
443
|
+
|
444
|
+
protected
|
445
|
+
|
446
|
+
def banner; end
|
447
|
+
def baseclass; end
|
448
|
+
def create_command(meth); end
|
449
|
+
def create_task(meth); end
|
450
|
+
def dispatch(command, given_args, given_opts, config); end
|
451
|
+
def self_command; end
|
452
|
+
def self_task; end
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
Thor::HELP_MAPPINGS = T.let(T.unsafe(nil), Array)
|
457
|
+
|
458
|
+
class Thor::HiddenCommand < ::Thor::Command
|
459
|
+
def hidden?; end
|
460
|
+
end
|
461
|
+
|
462
|
+
Thor::HiddenTask = Thor::HiddenCommand
|
463
|
+
|
464
|
+
module Thor::Invocation
|
465
|
+
mixes_in_class_methods ::Thor::Invocation::ClassMethods
|
466
|
+
|
467
|
+
def initialize(args = T.unsafe(nil), options = T.unsafe(nil), config = T.unsafe(nil), &block); end
|
468
|
+
|
469
|
+
def current_command_chain; end
|
470
|
+
def invoke(name = T.unsafe(nil), *args); end
|
471
|
+
def invoke_all; end
|
472
|
+
def invoke_command(command, *args); end
|
473
|
+
def invoke_task(command, *args); end
|
474
|
+
def invoke_with_padding(*args); end
|
475
|
+
|
476
|
+
protected
|
477
|
+
|
478
|
+
def _parse_initialization_options(args, opts, config); end
|
479
|
+
def _retrieve_class_and_command(name, sent_command = T.unsafe(nil)); end
|
480
|
+
def _retrieve_class_and_task(name, sent_command = T.unsafe(nil)); end
|
481
|
+
def _shared_configuration; end
|
482
|
+
|
483
|
+
class << self
|
484
|
+
def included(base); end
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
module Thor::Invocation::ClassMethods
|
489
|
+
def prepare_for_invocation(key, name); end
|
490
|
+
end
|
491
|
+
|
492
|
+
class Thor::InvocationError < ::Thor::Error; end
|
493
|
+
|
494
|
+
module Thor::LineEditor
|
495
|
+
class << self
|
496
|
+
def best_available; end
|
497
|
+
def readline(prompt, options = T.unsafe(nil)); end
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
501
|
+
class Thor::LineEditor::Basic
|
502
|
+
def initialize(prompt, options); end
|
503
|
+
|
504
|
+
def options; end
|
505
|
+
def prompt; end
|
506
|
+
def readline; end
|
507
|
+
|
508
|
+
private
|
509
|
+
|
510
|
+
def echo?; end
|
511
|
+
def get_input; end
|
512
|
+
|
513
|
+
class << self
|
514
|
+
def available?; end
|
515
|
+
end
|
516
|
+
end
|
517
|
+
|
518
|
+
class Thor::LineEditor::Readline < ::Thor::LineEditor::Basic
|
519
|
+
def readline; end
|
520
|
+
|
521
|
+
private
|
522
|
+
|
523
|
+
def add_to_history?; end
|
524
|
+
def completion_options; end
|
525
|
+
def completion_proc; end
|
526
|
+
def use_path_completion?; end
|
527
|
+
|
528
|
+
class << self
|
529
|
+
def available?; end
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
533
|
+
class Thor::LineEditor::Readline::PathCompletion
|
534
|
+
def initialize(text); end
|
535
|
+
|
536
|
+
def matches; end
|
537
|
+
|
538
|
+
private
|
539
|
+
|
540
|
+
def absolute_matches; end
|
541
|
+
def base_path; end
|
542
|
+
def glob_pattern; end
|
543
|
+
def relative_matches; end
|
544
|
+
def text; end
|
545
|
+
end
|
546
|
+
|
547
|
+
class Thor::MalformattedArgumentError < ::Thor::InvocationError; end
|
548
|
+
|
549
|
+
class Thor::NestedContext
|
550
|
+
def initialize; end
|
551
|
+
|
552
|
+
def enter; end
|
553
|
+
def entered?; end
|
554
|
+
|
555
|
+
private
|
556
|
+
|
557
|
+
def pop; end
|
558
|
+
def push; end
|
559
|
+
end
|
560
|
+
|
561
|
+
class Thor::NoKwargSpellChecker < ::DidYouMean::SpellChecker
|
562
|
+
def initialize(dictionary); end
|
563
|
+
end
|
564
|
+
|
565
|
+
class Thor::Option < ::Thor::Argument
|
566
|
+
def initialize(name, options = T.unsafe(nil)); end
|
567
|
+
|
568
|
+
def aliases; end
|
569
|
+
def array?; end
|
570
|
+
def boolean?; end
|
571
|
+
def group; end
|
572
|
+
def hash?; end
|
573
|
+
def hide; end
|
574
|
+
def human_name; end
|
575
|
+
def lazy_default; end
|
576
|
+
def numeric?; end
|
577
|
+
def repeatable; end
|
578
|
+
def string?; end
|
579
|
+
def switch_name; end
|
580
|
+
def usage(padding = T.unsafe(nil)); end
|
581
|
+
|
582
|
+
protected
|
583
|
+
|
584
|
+
def dasherize(str); end
|
585
|
+
def dasherized?; end
|
586
|
+
def undasherize(str); end
|
587
|
+
def validate!; end
|
588
|
+
def validate_default_type!; end
|
589
|
+
|
590
|
+
class << self
|
591
|
+
def parse(key, value); end
|
592
|
+
end
|
593
|
+
end
|
594
|
+
|
595
|
+
Thor::Option::VALID_TYPES = T.let(T.unsafe(nil), Array)
|
596
|
+
|
597
|
+
class Thor::Options < ::Thor::Arguments
|
598
|
+
def initialize(hash_options = T.unsafe(nil), defaults = T.unsafe(nil), stop_on_unknown = T.unsafe(nil), disable_required_check = T.unsafe(nil)); end
|
599
|
+
|
600
|
+
def check_unknown!; end
|
601
|
+
def parse(args); end
|
602
|
+
def peek; end
|
603
|
+
def remaining; end
|
604
|
+
def shift; end
|
605
|
+
def unshift(arg, is_value: T.unsafe(nil)); end
|
606
|
+
|
607
|
+
protected
|
608
|
+
|
609
|
+
def assign_result!(option, result); end
|
610
|
+
def current_is_switch?; end
|
611
|
+
def current_is_switch_formatted?; end
|
612
|
+
def current_is_value?; end
|
613
|
+
def normalize_switch(arg); end
|
614
|
+
def parse_boolean(switch); end
|
615
|
+
def parse_peek(switch, option); end
|
616
|
+
def parsing_options?; end
|
617
|
+
def switch?(arg); end
|
618
|
+
def switch_option(arg); end
|
619
|
+
|
620
|
+
class << self
|
621
|
+
def to_switches(options); end
|
622
|
+
end
|
623
|
+
end
|
624
|
+
|
625
|
+
Thor::Options::EQ_RE = T.let(T.unsafe(nil), Regexp)
|
626
|
+
Thor::Options::LONG_RE = T.let(T.unsafe(nil), Regexp)
|
627
|
+
Thor::Options::OPTS_END = T.let(T.unsafe(nil), String)
|
628
|
+
Thor::Options::SHORT_NUM = T.let(T.unsafe(nil), Regexp)
|
629
|
+
Thor::Options::SHORT_RE = T.let(T.unsafe(nil), Regexp)
|
630
|
+
Thor::Options::SHORT_SQ_RE = T.let(T.unsafe(nil), Regexp)
|
631
|
+
|
632
|
+
module Thor::RakeCompat
|
633
|
+
include ::FileUtils::StreamUtils_
|
634
|
+
include ::FileUtils
|
635
|
+
include ::Rake::FileUtilsExt
|
636
|
+
include ::Rake::DSL
|
637
|
+
|
638
|
+
class << self
|
639
|
+
def included(base); end
|
640
|
+
def rake_classes; end
|
641
|
+
end
|
642
|
+
end
|
643
|
+
|
644
|
+
class Thor::RequiredArgumentMissingError < ::Thor::InvocationError; end
|
645
|
+
module Thor::Sandbox; end
|
646
|
+
|
647
|
+
module Thor::Shell
|
648
|
+
def initialize(args = T.unsafe(nil), options = T.unsafe(nil), config = T.unsafe(nil)); end
|
649
|
+
|
650
|
+
def ask(*args, &block); end
|
651
|
+
def error(*args, &block); end
|
652
|
+
def file_collision(*args, &block); end
|
653
|
+
def no?(*args, &block); end
|
654
|
+
def print_in_columns(*args, &block); end
|
655
|
+
def print_table(*args, &block); end
|
656
|
+
def print_wrapped(*args, &block); end
|
657
|
+
def say(*args, &block); end
|
658
|
+
def say_error(*args, &block); end
|
659
|
+
def say_status(*args, &block); end
|
660
|
+
def set_color(*args, &block); end
|
661
|
+
def shell; end
|
662
|
+
def shell=(_arg0); end
|
663
|
+
def terminal_width(*args, &block); end
|
664
|
+
def with_padding; end
|
665
|
+
def yes?(*args, &block); end
|
666
|
+
|
667
|
+
protected
|
668
|
+
|
669
|
+
def _shared_configuration; end
|
670
|
+
end
|
671
|
+
|
672
|
+
class Thor::Shell::Basic
|
673
|
+
def initialize; end
|
674
|
+
|
675
|
+
def ask(statement, *args); end
|
676
|
+
def base; end
|
677
|
+
def base=(_arg0); end
|
678
|
+
def error(statement); end
|
679
|
+
def file_collision(destination); end
|
680
|
+
def indent(count = T.unsafe(nil)); end
|
681
|
+
def mute; end
|
682
|
+
def mute?; end
|
683
|
+
def no?(statement, color = T.unsafe(nil)); end
|
684
|
+
def padding; end
|
685
|
+
def padding=(value); end
|
686
|
+
def print_in_columns(array); end
|
687
|
+
def print_table(array, options = T.unsafe(nil)); end
|
688
|
+
def print_wrapped(message, options = T.unsafe(nil)); end
|
689
|
+
def say(message = T.unsafe(nil), color = T.unsafe(nil), force_new_line = T.unsafe(nil)); end
|
690
|
+
def say_error(message = T.unsafe(nil), color = T.unsafe(nil), force_new_line = T.unsafe(nil)); end
|
691
|
+
def say_status(status, message, log_status = T.unsafe(nil)); end
|
692
|
+
def set_color(string, *_arg1); end
|
693
|
+
def terminal_width; end
|
694
|
+
def yes?(statement, color = T.unsafe(nil)); end
|
695
|
+
|
696
|
+
protected
|
697
|
+
|
698
|
+
def answer_match(possibilities, answer, case_insensitive); end
|
699
|
+
def as_unicode; end
|
700
|
+
def ask_filtered(statement, color, options); end
|
701
|
+
def ask_simply(statement, color, options); end
|
702
|
+
def can_display_colors?; end
|
703
|
+
def dynamic_width; end
|
704
|
+
def dynamic_width_stty; end
|
705
|
+
def dynamic_width_tput; end
|
706
|
+
def file_collision_help; end
|
707
|
+
def git_merge_tool; end
|
708
|
+
def is?(value); end
|
709
|
+
def lookup_color(color); end
|
710
|
+
def merge(destination, content); end
|
711
|
+
def merge_tool; end
|
712
|
+
def prepare_message(message, *color); end
|
713
|
+
def quiet?; end
|
714
|
+
def show_diff(destination, content); end
|
715
|
+
def stderr; end
|
716
|
+
def stdout; end
|
717
|
+
def truncate(string, width); end
|
718
|
+
def unix?; end
|
719
|
+
end
|
720
|
+
|
721
|
+
Thor::Shell::Basic::DEFAULT_TERMINAL_WIDTH = T.let(T.unsafe(nil), Integer)
|
722
|
+
|
723
|
+
class Thor::Shell::Color < ::Thor::Shell::Basic
|
724
|
+
def set_color(string, *colors); end
|
725
|
+
|
726
|
+
protected
|
727
|
+
|
728
|
+
def are_colors_disabled?; end
|
729
|
+
def are_colors_supported?; end
|
730
|
+
def can_display_colors?; end
|
731
|
+
def diff_lcs_loaded?; end
|
732
|
+
def output_diff_line(diff); end
|
733
|
+
def show_diff(destination, content); end
|
734
|
+
end
|
735
|
+
|
736
|
+
Thor::Shell::Color::BLACK = T.let(T.unsafe(nil), String)
|
737
|
+
Thor::Shell::Color::BLUE = T.let(T.unsafe(nil), String)
|
738
|
+
Thor::Shell::Color::BOLD = T.let(T.unsafe(nil), String)
|
739
|
+
Thor::Shell::Color::CLEAR = T.let(T.unsafe(nil), String)
|
740
|
+
Thor::Shell::Color::CYAN = T.let(T.unsafe(nil), String)
|
741
|
+
Thor::Shell::Color::GREEN = T.let(T.unsafe(nil), String)
|
742
|
+
Thor::Shell::Color::MAGENTA = T.let(T.unsafe(nil), String)
|
743
|
+
Thor::Shell::Color::ON_BLACK = T.let(T.unsafe(nil), String)
|
744
|
+
Thor::Shell::Color::ON_BLUE = T.let(T.unsafe(nil), String)
|
745
|
+
Thor::Shell::Color::ON_CYAN = T.let(T.unsafe(nil), String)
|
746
|
+
Thor::Shell::Color::ON_GREEN = T.let(T.unsafe(nil), String)
|
747
|
+
Thor::Shell::Color::ON_MAGENTA = T.let(T.unsafe(nil), String)
|
748
|
+
Thor::Shell::Color::ON_RED = T.let(T.unsafe(nil), String)
|
749
|
+
Thor::Shell::Color::ON_WHITE = T.let(T.unsafe(nil), String)
|
750
|
+
Thor::Shell::Color::ON_YELLOW = T.let(T.unsafe(nil), String)
|
751
|
+
Thor::Shell::Color::RED = T.let(T.unsafe(nil), String)
|
752
|
+
Thor::Shell::Color::WHITE = T.let(T.unsafe(nil), String)
|
753
|
+
Thor::Shell::Color::YELLOW = T.let(T.unsafe(nil), String)
|
754
|
+
|
755
|
+
class Thor::Shell::HTML < ::Thor::Shell::Basic
|
756
|
+
def ask(statement, color = T.unsafe(nil)); end
|
757
|
+
def set_color(string, *colors); end
|
758
|
+
|
759
|
+
protected
|
760
|
+
|
761
|
+
def can_display_colors?; end
|
762
|
+
def diff_lcs_loaded?; end
|
763
|
+
def output_diff_line(diff); end
|
764
|
+
def show_diff(destination, content); end
|
765
|
+
end
|
766
|
+
|
767
|
+
Thor::Shell::HTML::BLACK = T.let(T.unsafe(nil), String)
|
768
|
+
Thor::Shell::HTML::BLUE = T.let(T.unsafe(nil), String)
|
769
|
+
Thor::Shell::HTML::BOLD = T.let(T.unsafe(nil), String)
|
770
|
+
Thor::Shell::HTML::CYAN = T.let(T.unsafe(nil), String)
|
771
|
+
Thor::Shell::HTML::GREEN = T.let(T.unsafe(nil), String)
|
772
|
+
Thor::Shell::HTML::MAGENTA = T.let(T.unsafe(nil), String)
|
773
|
+
Thor::Shell::HTML::ON_BLACK = T.let(T.unsafe(nil), String)
|
774
|
+
Thor::Shell::HTML::ON_BLUE = T.let(T.unsafe(nil), String)
|
775
|
+
Thor::Shell::HTML::ON_CYAN = T.let(T.unsafe(nil), String)
|
776
|
+
Thor::Shell::HTML::ON_GREEN = T.let(T.unsafe(nil), String)
|
777
|
+
Thor::Shell::HTML::ON_MAGENTA = T.let(T.unsafe(nil), String)
|
778
|
+
Thor::Shell::HTML::ON_RED = T.let(T.unsafe(nil), String)
|
779
|
+
Thor::Shell::HTML::ON_WHITE = T.let(T.unsafe(nil), String)
|
780
|
+
Thor::Shell::HTML::ON_YELLOW = T.let(T.unsafe(nil), String)
|
781
|
+
Thor::Shell::HTML::RED = T.let(T.unsafe(nil), String)
|
782
|
+
Thor::Shell::HTML::WHITE = T.let(T.unsafe(nil), String)
|
783
|
+
Thor::Shell::HTML::YELLOW = T.let(T.unsafe(nil), String)
|
784
|
+
Thor::Shell::SHELL_DELEGATED_METHODS = T.let(T.unsafe(nil), Array)
|
785
|
+
Thor::TEMPLATE_EXTNAME = T.let(T.unsafe(nil), String)
|
786
|
+
Thor::THOR_RESERVED_WORDS = T.let(T.unsafe(nil), Array)
|
787
|
+
Thor::Task = Thor::Command
|
788
|
+
|
789
|
+
class Thor::UndefinedCommandError < ::Thor::Error
|
790
|
+
include ::DidYouMean::Correctable
|
791
|
+
|
792
|
+
def initialize(command, all_commands, namespace); end
|
793
|
+
|
794
|
+
def all_commands; end
|
795
|
+
def command; end
|
796
|
+
end
|
797
|
+
|
798
|
+
class Thor::UndefinedCommandError::SpellChecker
|
799
|
+
def initialize(error); end
|
800
|
+
|
801
|
+
def corrections; end
|
802
|
+
def error; end
|
803
|
+
def spell_checker; end
|
804
|
+
end
|
805
|
+
|
806
|
+
Thor::UndefinedTaskError = Thor::UndefinedCommandError
|
807
|
+
|
808
|
+
class Thor::UnknownArgumentError < ::Thor::Error
|
809
|
+
include ::DidYouMean::Correctable
|
810
|
+
|
811
|
+
def initialize(switches, unknown); end
|
812
|
+
|
813
|
+
def switches; end
|
814
|
+
def unknown; end
|
815
|
+
end
|
816
|
+
|
817
|
+
class Thor::UnknownArgumentError::SpellChecker
|
818
|
+
def initialize(error); end
|
819
|
+
|
820
|
+
def corrections; end
|
821
|
+
def error; end
|
822
|
+
def spell_checker; end
|
823
|
+
end
|
824
|
+
|
825
|
+
module Thor::Util
|
826
|
+
class << self
|
827
|
+
def camel_case(str); end
|
828
|
+
def escape_globs(path); end
|
829
|
+
def escape_html(string); end
|
830
|
+
def find_by_namespace(namespace); end
|
831
|
+
def find_class_and_command_by_namespace(namespace, fallback = T.unsafe(nil)); end
|
832
|
+
def find_class_and_task_by_namespace(namespace, fallback = T.unsafe(nil)); end
|
833
|
+
def globs_for(path); end
|
834
|
+
def load_thorfile(path, content = T.unsafe(nil), debug = T.unsafe(nil)); end
|
835
|
+
def namespace_from_thor_class(constant); end
|
836
|
+
def namespaces_in_content(contents, file = T.unsafe(nil)); end
|
837
|
+
def ruby_command; end
|
838
|
+
def snake_case(str); end
|
839
|
+
def thor_classes_in(klass); end
|
840
|
+
def thor_root; end
|
841
|
+
def thor_root_glob; end
|
842
|
+
def user_home; end
|
843
|
+
end
|
844
|
+
end
|