shopify_api 4.13.0 → 12.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE.md +35 -0
- data/.github/dependabot.yml +20 -0
- data/.github/pull_request_template.md +20 -0
- data/.github/workflows/build.yml +42 -0
- data/.github/workflows/cla.yml +22 -0
- data/.github/workflows/close-waiting-for-response-issues.yml +20 -0
- data/.github/workflows/remove-labels-on-activity.yml +16 -0
- data/.github/workflows/stale.yml +32 -0
- data/.rubocop.yml +56 -5
- data/BREAKING_CHANGES_FOR_OLDER_VERSIONS.md +110 -0
- data/CHANGELOG.md +568 -0
- data/CONTRIBUTING.md +4 -3
- data/Gemfile +9 -2
- data/Gemfile.lock +159 -0
- data/LICENSE +2 -2
- data/README.md +86 -218
- data/RELEASING.md +19 -0
- data/Rakefile +16 -32
- data/SECURITY.md +59 -0
- data/bin/tapioca +29 -0
- data/dev.yml +32 -0
- data/docs/README.md +13 -0
- data/docs/getting_started.md +53 -0
- data/docs/issues.md +39 -0
- data/docs/usage/graphql.md +115 -0
- data/docs/usage/graphql_storefront.md +42 -0
- data/docs/usage/oauth.md +105 -0
- data/docs/usage/rest.md +137 -0
- data/docs/usage/session_storage.md +46 -0
- data/docs/usage/webhooks.md +98 -0
- data/lib/shopify_api/admin_versions.rb +19 -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 +72 -0
- data/lib/shopify_api/auth/jwt_payload.rb +83 -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 +138 -0
- data/lib/shopify_api/auth/session.rb +119 -0
- data/lib/shopify_api/auth/session_storage.rb +30 -0
- data/lib/shopify_api/auth.rb +26 -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 +166 -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/missing_required_argument_error.rb +9 -0
- data/lib/shopify_api/errors/no_active_session_error.rb +9 -0
- data/lib/shopify_api/errors/no_session_cookie_error.rb +9 -0
- data/lib/shopify_api/errors/no_webhook_handler.rb +9 -0
- data/lib/shopify_api/errors/private_app_error.rb +9 -0
- data/lib/shopify_api/errors/request_access_token_error.rb +9 -0
- data/lib/shopify_api/errors/session_not_found_error.rb +9 -0
- data/lib/shopify_api/errors/session_storage_error.rb +9 -0
- data/lib/shopify_api/errors/unsupported_oauth_error.rb +9 -0
- data/lib/shopify_api/errors/unsupported_version_error.rb +9 -0
- data/lib/shopify_api/errors/webhook_registration_error.rb +9 -0
- data/lib/shopify_api/inflector.rb +17 -0
- data/lib/shopify_api/rest/base.rb +387 -0
- data/lib/shopify_api/rest/base_errors.rb +32 -0
- data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +190 -0
- data/lib/shopify_api/rest/resources/2022_01/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2022_01/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2022_01/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2022_01/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_01/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_01/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2022_01/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_01/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2022_01/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_01/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/carrier_service.rb +116 -0
- data/lib/shopify_api/rest/resources/2022_01/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_01/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2022_01/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_01/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_01/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2022_01/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2022_01/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_01/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2022_01/customer.rb +318 -0
- data/lib/shopify_api/rest/resources/2022_01/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2022_01/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2022_01/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_01/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_01/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2022_01/draft_order.rb +275 -0
- data/lib/shopify_api/rest/resources/2022_01/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +268 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +281 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_request.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2022_01/gift_card.rb +215 -0
- data/lib/shopify_api/rest/resources/2022_01/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_01/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2022_01/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2022_01/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2022_01/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_01/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2022_01/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_01/metafield.rb +349 -0
- data/lib/shopify_api/rest/resources/2022_01/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_01/order.rb +473 -0
- data/lib/shopify_api/rest/resources/2022_01/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_01/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_01/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2022_01/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2022_01/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_01/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_01/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_01/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_01/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_01/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2022_01/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2022_01/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2022_01/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_01/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_01/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_01/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2022_01/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_01/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_01/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_01/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2022_01/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2022_01/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_01/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_01/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2022_01/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2022_01/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_01/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_01/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_01/webhook.rb +168 -0
- data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +190 -0
- data/lib/shopify_api/rest/resources/2022_04/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2022_04/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2022_04/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2022_04/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_04/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_04/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2022_04/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_04/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2022_04/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_04/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/carrier_service.rb +116 -0
- data/lib/shopify_api/rest/resources/2022_04/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_04/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2022_04/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_04/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_04/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2022_04/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2022_04/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_04/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2022_04/customer.rb +321 -0
- data/lib/shopify_api/rest/resources/2022_04/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_04/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_04/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +275 -0
- data/lib/shopify_api/rest/resources/2022_04/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +268 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +284 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +215 -0
- data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_04/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2022_04/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2022_04/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2022_04/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_04/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2022_04/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_04/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2022_04/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_04/order.rb +473 -0
- data/lib/shopify_api/rest/resources/2022_04/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_04/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_04/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2022_04/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2022_04/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_04/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_04/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_04/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_04/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_04/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2022_04/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2022_04/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2022_04/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_04/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_04/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_04/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2022_04/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_04/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_04/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_04/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2022_04/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_04/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_04/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2022_04/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2022_04/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_04/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_04/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_04/webhook.rb +168 -0
- data/lib/shopify_api/rest/resources/2022_07/abandoned_checkout.rb +190 -0
- data/lib/shopify_api/rest/resources/2022_07/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2022_07/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2022_07/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2022_07/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_07/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_07/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2022_07/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_07/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_07/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2022_07/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_07/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_07/carrier_service.rb +113 -0
- data/lib/shopify_api/rest/resources/2022_07/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_07/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2022_07/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_07/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_07/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2022_07/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2022_07/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_07/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2022_07/customer.rb +321 -0
- data/lib/shopify_api/rest/resources/2022_07/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2022_07/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2022_07/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_07/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_07/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2022_07/dispute_evidence.rb +117 -0
- data/lib/shopify_api/rest/resources/2022_07/dispute_file_upload.rb +81 -0
- data/lib/shopify_api/rest/resources/2022_07/draft_order.rb +275 -0
- data/lib/shopify_api/rest/resources/2022_07/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2022_07/fulfillment.rb +221 -0
- data/lib/shopify_api/rest/resources/2022_07/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2022_07/fulfillment_order.rb +310 -0
- data/lib/shopify_api/rest/resources/2022_07/fulfillment_request.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_07/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2022_07/gift_card.rb +215 -0
- data/lib/shopify_api/rest/resources/2022_07/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_07/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2022_07/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2022_07/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2022_07/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_07/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2022_07/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_07/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2022_07/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_07/order.rb +473 -0
- data/lib/shopify_api/rest/resources/2022_07/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_07/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_07/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2022_07/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2022_07/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_07/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_07/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_07/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_07/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_07/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2022_07/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2022_07/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2022_07/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_07/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_07/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_07/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2022_07/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_07/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_07/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_07/shop.rb +218 -0
- data/lib/shopify_api/rest/resources/2022_07/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2022_07/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_07/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_07/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2022_07/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2022_07/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_07/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_07/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_07/webhook.rb +168 -0
- data/lib/shopify_api/rest/resources/2022_10/abandoned_checkout.rb +190 -0
- data/lib/shopify_api/rest/resources/2022_10/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2022_10/android_pay_key.rb +77 -0
- data/lib/shopify_api/rest/resources/2022_10/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2022_10/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2022_10/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_10/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2022_10/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_10/assigned_fulfillment_order.rb +79 -0
- data/lib/shopify_api/rest/resources/2022_10/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2022_10/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2022_10/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_10/carrier_service.rb +113 -0
- data/lib/shopify_api/rest/resources/2022_10/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_10/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2022_10/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_10/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_10/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2022_10/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2022_10/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_10/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2022_10/customer.rb +321 -0
- data/lib/shopify_api/rest/resources/2022_10/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2022_10/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2022_10/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2022_10/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2022_10/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2022_10/dispute_evidence.rb +117 -0
- data/lib/shopify_api/rest/resources/2022_10/dispute_file_upload.rb +81 -0
- data/lib/shopify_api/rest/resources/2022_10/draft_order.rb +275 -0
- data/lib/shopify_api/rest/resources/2022_10/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2022_10/fulfillment.rb +221 -0
- data/lib/shopify_api/rest/resources/2022_10/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2022_10/fulfillment_order.rb +310 -0
- data/lib/shopify_api/rest/resources/2022_10/fulfillment_request.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_10/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2022_10/gift_card.rb +215 -0
- data/lib/shopify_api/rest/resources/2022_10/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2022_10/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2022_10/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2022_10/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2022_10/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_10/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2022_10/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2022_10/metafield.rb +342 -0
- data/lib/shopify_api/rest/resources/2022_10/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2022_10/order.rb +476 -0
- data/lib/shopify_api/rest/resources/2022_10/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2022_10/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2022_10/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2022_10/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2022_10/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2022_10/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_10/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2022_10/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_10/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2022_10/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2022_10/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2022_10/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2022_10/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2022_10/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2022_10/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2022_10/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2022_10/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2022_10/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2022_10/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2022_10/shop.rb +221 -0
- data/lib/shopify_api/rest/resources/2022_10/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2022_10/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2022_10/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2022_10/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2022_10/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2022_10/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2022_10/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2022_10/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2022_10/webhook.rb +168 -0
- data/lib/shopify_api/utils/graphql_proxy.rb +52 -0
- data/lib/shopify_api/utils/hmac_validator.rb +44 -0
- data/lib/shopify_api/utils/http_utils.rb +17 -0
- data/lib/shopify_api/utils/session_utils.rb +135 -0
- data/lib/shopify_api/utils/verifiable_query.rb +18 -0
- data/lib/shopify_api/version.rb +4 -1
- data/lib/shopify_api/webhooks/handler.rb +15 -0
- data/lib/shopify_api/webhooks/register_result.rb +14 -0
- data/lib/shopify_api/webhooks/registration.rb +73 -0
- data/lib/shopify_api/webhooks/registrations/event_bridge.rb +61 -0
- data/lib/shopify_api/webhooks/registrations/http.rb +72 -0
- data/lib/shopify_api/webhooks/registrations/pub_sub.rb +65 -0
- data/lib/shopify_api/webhooks/registry.rb +215 -0
- data/lib/shopify_api/webhooks/request.rb +56 -0
- data/lib/shopify_api.rb +19 -26
- data/service.yml +1 -0
- data/shipit.rubygems.yml +1 -1
- data/shopify_api.gemspec +36 -19
- 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 +8 -0
- data/sorbet/tapioca/config.yml +4 -0
- data/sorbet/tapioca/require.rb +20 -0
- metadata +603 -280
- data/.document +0 -5
- data/.gitignore +0 -10
- data/.travis.yml +0 -32
- data/CHANGELOG +0 -310
- data/CONTRIBUTORS +0 -3
- data/Gemfile_ar30 +0 -6
- data/Gemfile_ar31 +0 -6
- data/Gemfile_ar32 +0 -6
- data/Gemfile_ar40 +0 -6
- data/Gemfile_ar_master +0 -6
- data/RELEASING +0 -16
- data/bin/shopify +0 -3
- data/lib/active_resource/base_ext.rb +0 -21
- data/lib/active_resource/connection_ext.rb +0 -10
- data/lib/active_resource/detailed_log_subscriber.rb +0 -19
- data/lib/active_resource/disable_prefix_check.rb +0 -36
- data/lib/active_resource/json_errors.rb +0 -31
- data/lib/active_resource/to_query.rb +0 -10
- data/lib/shopify_api/connection.rb +0 -33
- data/lib/shopify_api/countable.rb +0 -14
- data/lib/shopify_api/events.rb +0 -7
- data/lib/shopify_api/json_format.rb +0 -18
- data/lib/shopify_api/limits.rb +0 -76
- data/lib/shopify_api/metafields.rb +0 -20
- data/lib/shopify_api/resources/access_scope.rb +0 -5
- data/lib/shopify_api/resources/access_token.rb +0 -8
- data/lib/shopify_api/resources/address.rb +0 -4
- data/lib/shopify_api/resources/announcement.rb +0 -4
- data/lib/shopify_api/resources/api_permission.rb +0 -9
- data/lib/shopify_api/resources/application_charge.rb +0 -15
- data/lib/shopify_api/resources/application_credit.rb +0 -4
- data/lib/shopify_api/resources/article.rb +0 -21
- data/lib/shopify_api/resources/asset.rb +0 -96
- data/lib/shopify_api/resources/base.rb +0 -89
- data/lib/shopify_api/resources/billing_address.rb +0 -4
- data/lib/shopify_api/resources/blog.rb +0 -10
- data/lib/shopify_api/resources/carrier_service.rb +0 -4
- data/lib/shopify_api/resources/cart.rb +0 -4
- data/lib/shopify_api/resources/checkout.rb +0 -4
- data/lib/shopify_api/resources/collect.rb +0 -5
- data/lib/shopify_api/resources/collection_listing.rb +0 -9
- data/lib/shopify_api/resources/comment.rb +0 -9
- data/lib/shopify_api/resources/country.rb +0 -4
- data/lib/shopify_api/resources/custom_collection.rb +0 -19
- data/lib/shopify_api/resources/customer.rb +0 -29
- data/lib/shopify_api/resources/customer_group.rb +0 -5
- data/lib/shopify_api/resources/customer_invite.rb +0 -4
- data/lib/shopify_api/resources/customer_saved_search.rb +0 -9
- data/lib/shopify_api/resources/discount_code.rb +0 -9
- data/lib/shopify_api/resources/draft_order.rb +0 -14
- data/lib/shopify_api/resources/draft_order_invoice.rb +0 -4
- data/lib/shopify_api/resources/event.rb +0 -7
- data/lib/shopify_api/resources/fulfillment.rb +0 -13
- data/lib/shopify_api/resources/fulfillment_event.rb +0 -15
- data/lib/shopify_api/resources/fulfillment_request.rb +0 -15
- data/lib/shopify_api/resources/fulfillment_service.rb +0 -4
- data/lib/shopify_api/resources/gift_card.rb +0 -7
- data/lib/shopify_api/resources/graphql.rb +0 -22
- data/lib/shopify_api/resources/image.rb +0 -16
- data/lib/shopify_api/resources/inventory_item.rb +0 -6
- data/lib/shopify_api/resources/inventory_level.rb +0 -55
- data/lib/shopify_api/resources/line_item.rb +0 -14
- data/lib/shopify_api/resources/location.rb +0 -8
- data/lib/shopify_api/resources/marketing_event.rb +0 -8
- data/lib/shopify_api/resources/metafield.rb +0 -12
- data/lib/shopify_api/resources/note_attribute.rb +0 -4
- data/lib/shopify_api/resources/o_auth.rb +0 -17
- data/lib/shopify_api/resources/option.rb +0 -4
- data/lib/shopify_api/resources/order.rb +0 -29
- data/lib/shopify_api/resources/order_risk.rb +0 -8
- data/lib/shopify_api/resources/page.rb +0 -6
- data/lib/shopify_api/resources/payment_details.rb +0 -4
- data/lib/shopify_api/resources/ping/conversation.rb +0 -18
- data/lib/shopify_api/resources/ping/message.rb +0 -9
- data/lib/shopify_api/resources/ping.rb +0 -3
- data/lib/shopify_api/resources/policy.rb +0 -7
- data/lib/shopify_api/resources/price_rule.rb +0 -8
- data/lib/shopify_api/resources/product.rb +0 -33
- data/lib/shopify_api/resources/product_listing.rb +0 -9
- data/lib/shopify_api/resources/province.rb +0 -5
- data/lib/shopify_api/resources/receipt.rb +0 -4
- data/lib/shopify_api/resources/recurring_application_charge.rb +0 -31
- data/lib/shopify_api/resources/redirect.rb +0 -4
- data/lib/shopify_api/resources/refund.rb +0 -13
- data/lib/shopify_api/resources/report.rb +0 -4
- data/lib/shopify_api/resources/resource_feedback.rb +0 -19
- data/lib/shopify_api/resources/rule.rb +0 -4
- data/lib/shopify_api/resources/script_tag.rb +0 -4
- data/lib/shopify_api/resources/shipping_address.rb +0 -4
- data/lib/shopify_api/resources/shipping_line.rb +0 -4
- data/lib/shopify_api/resources/shipping_zone.rb +0 -4
- data/lib/shopify_api/resources/shop.rb +0 -23
- data/lib/shopify_api/resources/smart_collection.rb +0 -15
- data/lib/shopify_api/resources/storefront_access_token.rb +0 -4
- data/lib/shopify_api/resources/tax_line.rb +0 -4
- data/lib/shopify_api/resources/tax_service.rb +0 -4
- data/lib/shopify_api/resources/theme.rb +0 -4
- data/lib/shopify_api/resources/transaction.rb +0 -5
- data/lib/shopify_api/resources/usage_charge.rb +0 -5
- data/lib/shopify_api/resources/user.rb +0 -4
- data/lib/shopify_api/resources/variant.rb +0 -8
- data/lib/shopify_api/resources/webhook.rb +0 -4
- data/lib/shopify_api/resources.rb +0 -2
- data/lib/shopify_api/session.rb +0 -144
- data/test/access_token_test.rb +0 -19
- data/test/active_resource/json_errors_test.rb +0 -19
- data/test/api_permission_test.rb +0 -9
- data/test/application_charge_test.rb +0 -79
- data/test/application_credit_test.rb +0 -35
- data/test/article_test.rb +0 -73
- data/test/asset_test.rb +0 -18
- data/test/base_test.rb +0 -125
- data/test/blog_test.rb +0 -8
- data/test/carrier_service_test.rb +0 -17
- data/test/cart_test.rb +0 -13
- data/test/checkouts_test.rb +0 -9
- data/test/collect_test.rb +0 -9
- data/test/collection_listing_test.rb +0 -41
- data/test/countable_test.rb +0 -13
- data/test/custom_collection_test.rb +0 -9
- data/test/customer_saved_search_test.rb +0 -27
- data/test/customer_test.rb +0 -50
- data/test/detailed_log_subscriber_test.rb +0 -49
- data/test/discount_code_test.rb +0 -53
- data/test/draft_order_test.rb +0 -151
- data/test/fixtures/access_token_delegate.json +0 -4
- 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/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/checkouts.json +0 -186
- data/test/fixtures/collect.json +0 -12
- data/test/fixtures/collection_listing.json +0 -11
- data/test/fixtures/collection_listing_product_ids.json +0 -1
- data/test/fixtures/collection_listings.json +0 -13
- data/test/fixtures/custom_collection.json +0 -17
- data/test/fixtures/customer_invite.json +0 -9
- data/test/fixtures/customer_saved_search.json +0 -9
- data/test/fixtures/customer_saved_search_customers.json +0 -60
- data/test/fixtures/customers.json +0 -59
- data/test/fixtures/customers_account_activation_url.json +0 -3
- data/test/fixtures/customers_search.json +0 -60
- data/test/fixtures/discount_code.json +0 -10
- data/test/fixtures/discount_codes.json +0 -12
- data/test/fixtures/draft_order.json +0 -159
- data/test/fixtures/draft_order_completed.json +0 -159
- data/test/fixtures/draft_order_invoice.json +0 -9
- data/test/fixtures/draft_orders.json +0 -161
- data/test/fixtures/engagement.json +0 -15
- data/test/fixtures/events.json +0 -31
- data/test/fixtures/fulfillment.json +0 -49
- data/test/fixtures/fulfillment_event.json +0 -12
- data/test/fixtures/fulfillment_request.json +0 -28
- data/test/fixtures/fulfillment_service.json +0 -10
- data/test/fixtures/gift_card.json +0 -20
- data/test/fixtures/gift_card_disabled.json +0 -20
- 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/o_auth_revoke.json +0 -5
- 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/ping/conversation.json +0 -1
- data/test/fixtures/ping/message.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_listings.json +0 -174
- 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_zones.json +0 -315
- data/test/fixtures/shop.json +0 -26
- data/test/fixtures/smart_collection.json +0 -21
- 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/transaction.json +0 -29
- data/test/fixtures/usage_charge.json +0 -11
- data/test/fixtures/usage_charges.json +0 -23
- data/test/fixtures/user.json +0 -21
- data/test/fixtures/users.json +0 -42
- data/test/fixtures/variant.json +0 -23
- data/test/fixtures/variants.json +0 -88
- data/test/fixtures/webhook.json +0 -10
- data/test/fixtures/webhooks.json +0 -18
- data/test/fulfillment_event_test.rb +0 -69
- data/test/fulfillment_request_test.rb +0 -33
- data/test/fulfillment_service_test.rb +0 -17
- data/test/fulfillment_test.rb +0 -61
- data/test/gift_card_test.rb +0 -22
- data/test/image_test.rb +0 -39
- data/test/inventory_level_test.rb +0 -59
- data/test/limits_test.rb +0 -38
- data/test/location_test.rb +0 -14
- data/test/marketing_event_test.rb +0 -68
- data/test/metafield_test.rb +0 -46
- data/test/o_auth_test.rb +0 -8
- data/test/order_risk_test.rb +0 -46
- data/test/order_test.rb +0 -59
- data/test/ping/conversation_test.rb +0 -39
- data/test/policy_test.rb +0 -19
- data/test/price_rule_test.rb +0 -65
- data/test/product_listing_test.rb +0 -40
- data/test/product_test.rb +0 -50
- data/test/recurring_application_charge_test.rb +0 -149
- data/test/redirect_test.rb +0 -9
- data/test/refund_test.rb +0 -32
- data/test/report_test.rb +0 -35
- data/test/resource_feedback_test.rb +0 -42
- data/test/script_tag_test.rb +0 -30
- data/test/session_test.rb +0 -250
- data/test/shipping_zone_test.rb +0 -10
- data/test/shop_test.rb +0 -68
- data/test/smart_collection_test.rb +0 -10
- data/test/storefront_access_token_test.rb +0 -32
- data/test/tax_service_test.rb +0 -8
- data/test/test_helper.rb +0 -97
- data/test/transaction_test.rb +0 -17
- data/test/usage_charge_test.rb +0 -21
- data/test/user_test.rb +0 -17
- data/test/variant_test.rb +0 -46
- data/test/webhook_test.rb +0 -21
data/test/discount_code_test.rb
DELETED
@@ -1,53 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class DiscountCodeTest < Test::Unit::TestCase
|
4
|
-
def setup
|
5
|
-
super
|
6
|
-
fake 'price_rules/102586120/discount_codes/1002091923', body: load_fixture('discount_code')
|
7
|
-
|
8
|
-
@discount_code = ShopifyAPI::DiscountCode.find(1002091923, params: {price_rule_id: 102586120})
|
9
|
-
end
|
10
|
-
|
11
|
-
def test_get_discount_code
|
12
|
-
fake 'price_rules/102586120/discount_codes', method: :get, status: 200, body: load_fixture('discount_code')
|
13
|
-
discount_code = ShopifyAPI::DiscountCode.find 1002091923, params: { price_rule_id: 102586120 }
|
14
|
-
|
15
|
-
assert_equal 1002091923, discount_code.id
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_get_all_discount_codes
|
19
|
-
fake 'price_rules/102586120/discount_codes', method: :get, status: 200, body: load_fixture('discount_codes')
|
20
|
-
discount_codes = ShopifyAPI::DiscountCode.all params: { price_rule_id: 102586120 }
|
21
|
-
|
22
|
-
assert_equal 1, discount_codes.length
|
23
|
-
assert_equal 1002091923, discount_codes.first.id
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_create_discount_code
|
27
|
-
fake 'price_rules/102586120/discount_codes', method: :post, status: 201, body: load_fixture('discount_code')
|
28
|
-
discount_code = ShopifyAPI::DiscountCode.new
|
29
|
-
discount_code.prefix_options[:price_rule_id] = 102586120
|
30
|
-
discount_code.code = "SUMMERSALE10"
|
31
|
-
discount_code.save
|
32
|
-
|
33
|
-
assert_equal '{"discount_code":{"code":"SUMMERSALE10"}}', FakeWeb.last_request.body
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_update_discount_code
|
37
|
-
discount_code_response = ActiveSupport::JSON.decode(load_fixture('discount_code'))
|
38
|
-
discount_code_response['discount_code']['code'] = "WINTERSALE50"
|
39
|
-
@discount_code.code = "WINTERSALE50"
|
40
|
-
|
41
|
-
fake 'price_rules/102586120/discount_codes/1002091923', method: :put, status: 200, body: ActiveSupport::JSON.encode(discount_code_response)
|
42
|
-
|
43
|
-
@discount_code.save
|
44
|
-
|
45
|
-
assert_equal discount_code_response['discount_code']['code'], @discount_code.code
|
46
|
-
end
|
47
|
-
|
48
|
-
def test_delete_discount_code
|
49
|
-
fake 'price_rules/102586120/discount_codes/1002091923', method: :delete, body: 'destroyed'
|
50
|
-
|
51
|
-
assert @discount_code.destroy
|
52
|
-
end
|
53
|
-
end
|
data/test/draft_order_test.rb
DELETED
@@ -1,151 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class DraftOrderTest < Test::Unit::TestCase
|
4
|
-
def setup
|
5
|
-
super
|
6
|
-
|
7
|
-
fake 'draft_orders/517119332', body: load_fixture('draft_order')
|
8
|
-
|
9
|
-
@draft_order = ShopifyAPI::DraftOrder.find(517119332)
|
10
|
-
end
|
11
|
-
|
12
|
-
def test_get_draft_order
|
13
|
-
fake 'draft_orders/517119332', method: :get, status: 200, body: load_fixture('draft_order')
|
14
|
-
|
15
|
-
draft_order = ShopifyAPI::DraftOrder.find(517119332)
|
16
|
-
|
17
|
-
assert_equal 517119332, draft_order.id
|
18
|
-
end
|
19
|
-
|
20
|
-
def test_get_all_draft_orders
|
21
|
-
fake 'draft_orders', method: :get, status: 200, body: load_fixture('draft_orders')
|
22
|
-
|
23
|
-
draft_orders = ShopifyAPI::DraftOrder.all
|
24
|
-
|
25
|
-
assert_equal 1, draft_orders.length
|
26
|
-
assert_equal 517119332, draft_orders.first.id
|
27
|
-
end
|
28
|
-
|
29
|
-
def test_get_count_draft_orders
|
30
|
-
fake 'draft_orders/count', method: :get, status: 200, body: '{"count": 16}'
|
31
|
-
|
32
|
-
draft_orders_count = ShopifyAPI::DraftOrder.count
|
33
|
-
|
34
|
-
assert_equal 16, draft_orders_count
|
35
|
-
end
|
36
|
-
|
37
|
-
def test_create_draft_order
|
38
|
-
fake 'draft_orders', method: :post, status: 201, body: load_fixture('draft_order')
|
39
|
-
|
40
|
-
draft_order = ShopifyAPI::DraftOrder.create(line_items: [{ quantity: 1, variant_id: 39072856 }])
|
41
|
-
|
42
|
-
assert_equal '{"draft_order":{"line_items":[{"quantity":1,"variant_id":39072856}]}}', FakeWeb.last_request.body
|
43
|
-
assert_equal 39072856, draft_order.line_items.first.variant_id
|
44
|
-
end
|
45
|
-
|
46
|
-
def test_create_draft_order_202
|
47
|
-
fake 'draft_orders', method: :post, status: 202, body: load_fixture('draft_order')
|
48
|
-
|
49
|
-
draft_order = ShopifyAPI::DraftOrder.create(line_items: [{ quantity: 1, variant_id: 39072856 }])
|
50
|
-
|
51
|
-
assert_equal 39072856, draft_order.line_items.first.variant_id
|
52
|
-
end
|
53
|
-
|
54
|
-
def test_update_draft_order
|
55
|
-
draft_order_response = ActiveSupport::JSON.decode(load_fixture('draft_order'))
|
56
|
-
draft_order_response['draft_order']['note'] = 'Test new note'
|
57
|
-
@draft_order.note = 'Test new note'
|
58
|
-
fake 'draft_orders/517119332', method: :put, status: 200, body: ActiveSupport::JSON.encode(draft_order_response)
|
59
|
-
|
60
|
-
@draft_order.save
|
61
|
-
|
62
|
-
assert_equal draft_order_response['draft_order']['note'], @draft_order.note
|
63
|
-
end
|
64
|
-
|
65
|
-
def test_send_invoice_with_no_params
|
66
|
-
draft_order_invoice_fixture = load_fixture('draft_order_invoice')
|
67
|
-
draft_order_invoice = ActiveSupport::JSON.decode(draft_order_invoice_fixture)
|
68
|
-
fake 'draft_orders/517119332/send_invoice', method: :post, body: draft_order_invoice_fixture
|
69
|
-
|
70
|
-
draft_order_invoice_response = @draft_order.send_invoice
|
71
|
-
|
72
|
-
assert_equal '{"draft_order_invoice":{}}', FakeWeb.last_request.body
|
73
|
-
assert_kind_of ShopifyAPI::DraftOrderInvoice, draft_order_invoice_response
|
74
|
-
assert_equal draft_order_invoice['draft_order_invoice']['to'], draft_order_invoice_response.to
|
75
|
-
end
|
76
|
-
|
77
|
-
def test_send_invoice_with_params
|
78
|
-
draft_order_invoice_fixture = load_fixture('draft_order_invoice')
|
79
|
-
draft_order_invoice = ActiveSupport::JSON.decode(draft_order_invoice_fixture)
|
80
|
-
fake 'draft_orders/517119332/send_invoice', method: :post, body: draft_order_invoice_fixture
|
81
|
-
|
82
|
-
draft_order_invoice_response = @draft_order.send_invoice(ShopifyAPI::DraftOrderInvoice.new(draft_order_invoice['draft_order_invoice']))
|
83
|
-
|
84
|
-
assert_equal draft_order_invoice, ActiveSupport::JSON.decode(FakeWeb.last_request.body)
|
85
|
-
assert_kind_of ShopifyAPI::DraftOrderInvoice, draft_order_invoice_response
|
86
|
-
assert_equal draft_order_invoice['draft_order_invoice']['to'], draft_order_invoice_response.to
|
87
|
-
end
|
88
|
-
|
89
|
-
def test_delete_draft_order
|
90
|
-
fake 'draft_orders/517119332', method: :delete, body: 'destroyed'
|
91
|
-
assert @draft_order.destroy
|
92
|
-
end
|
93
|
-
|
94
|
-
def test_add_metafields_to_draft_order
|
95
|
-
fake 'draft_orders/517119332/metafields', method: :post, status: 201, body: load_fixture('metafield')
|
96
|
-
|
97
|
-
field = @draft_order.add_metafield(ShopifyAPI::Metafield.new(namespace: 'contact', key: 'email', value: '123@example.com', value_type: 'string'))
|
98
|
-
|
99
|
-
assert_equal ActiveSupport::JSON.decode('{"metafield":{"namespace":"contact","key":"email","value":"123@example.com","value_type":"string"}}'), ActiveSupport::JSON.decode(FakeWeb.last_request.body)
|
100
|
-
assert !field.new_record?
|
101
|
-
assert_equal 'contact', field.namespace
|
102
|
-
assert_equal 'email', field.key
|
103
|
-
assert_equal '123@example.com', field.value
|
104
|
-
end
|
105
|
-
|
106
|
-
def test_get_all_metafields_for_draft_order
|
107
|
-
fake 'draft_orders/517119332/metafields', body: load_fixture('metafields')
|
108
|
-
|
109
|
-
metafields = @draft_order.metafields
|
110
|
-
|
111
|
-
assert_equal 3, metafields.length
|
112
|
-
assert metafields.all? { |m| m.is_a?(ShopifyAPI::Metafield) }
|
113
|
-
end
|
114
|
-
|
115
|
-
def test_get_2_metafields_for_draft_order
|
116
|
-
body = ActiveSupport::JSON.decode load_fixture 'metafields'
|
117
|
-
body['metafields'].slice! 2, 1
|
118
|
-
|
119
|
-
fake 'draft_orders/517119332/metafields.json?limit=2', body: body.to_json, extension: false
|
120
|
-
|
121
|
-
metafields = @draft_order.metafields limit: 2
|
122
|
-
|
123
|
-
assert_equal 2, metafields.length
|
124
|
-
assert metafields.all?{ |m| m.is_a? ShopifyAPI::Metafield }
|
125
|
-
end
|
126
|
-
|
127
|
-
def test_complete_draft_order_with_no_params
|
128
|
-
completed_fixture = load_fixture('draft_order_completed')
|
129
|
-
completed_draft = ActiveSupport::JSON.decode(completed_fixture)['draft_order']
|
130
|
-
fake 'draft_orders/517119332/complete', method: :put, status: 200, body: completed_fixture
|
131
|
-
|
132
|
-
@draft_order.complete
|
133
|
-
|
134
|
-
assert_equal completed_draft['status'], @draft_order.status
|
135
|
-
assert_equal completed_draft['order_id'], @draft_order.order_id
|
136
|
-
refute_nil @draft_order.completed_at
|
137
|
-
end
|
138
|
-
|
139
|
-
def test_complete_draft_order_with_params
|
140
|
-
completed_fixture = load_fixture('draft_order_completed')
|
141
|
-
completed_draft = ActiveSupport::JSON.decode(completed_fixture)['draft_order']
|
142
|
-
complete_params = { payment_pending: true }
|
143
|
-
fake 'draft_orders/517119332/complete.json?payment_pending=true', extension: false, method: :put, status: 200, body: completed_fixture
|
144
|
-
|
145
|
-
@draft_order.complete(complete_params)
|
146
|
-
|
147
|
-
assert_equal completed_draft['status'], @draft_order.status
|
148
|
-
assert_equal completed_draft['order_id'], @draft_order.order_id
|
149
|
-
refute_nil @draft_order.completed_at
|
150
|
-
end
|
151
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"application_charge": {
|
3
|
-
"api_client_id": 861378,
|
4
|
-
"created_at": "2015-07-10T15:03:51+10:00",
|
5
|
-
"id": 803742,
|
6
|
-
"name": "iPod Cleaning",
|
7
|
-
"price": "5.00",
|
8
|
-
"return_url": "http:\/\/google.com",
|
9
|
-
"status": "pending",
|
10
|
-
"test": null,
|
11
|
-
"updated_at": "2015-07-10T15:03:51+10:00",
|
12
|
-
"charge_type": null,
|
13
|
-
"decorated_return_url": "http:\/\/google.com?charge_id=803742",
|
14
|
-
"confirmation_url": "https://this-is-my-test-shop.myshopify.com\/admin\/charges\/803742\/confirm_application_charge?signature=BAhpA55DDA%3D%3D--55b44e274e438c619be4631c804abcbcb6ee915a"
|
15
|
-
}
|
16
|
-
}
|
@@ -1,57 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"application_charges": [
|
3
|
-
{
|
4
|
-
"api_client_id": 861378,
|
5
|
-
"created_at": "2015-07-10T15:16:14+10:00",
|
6
|
-
"id": 803750,
|
7
|
-
"name": "Magic Mouse",
|
8
|
-
"price": "99.00",
|
9
|
-
"return_url": "http:\/\/google.com",
|
10
|
-
"status": "declined",
|
11
|
-
"test": null,
|
12
|
-
"updated_at": "2015-07-10T15:18:09+10:00",
|
13
|
-
"charge_type": null,
|
14
|
-
"decorated_return_url": "http:\/\/google.com?charge_id=803750"
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"api_client_id": 861378,
|
18
|
-
"created_at": "2015-07-10T15:10:10+10:00",
|
19
|
-
"id": 803748,
|
20
|
-
"name": "Screen Replacement",
|
21
|
-
"price": "499.00",
|
22
|
-
"return_url": "http:\/\/google.com",
|
23
|
-
"status": "pending",
|
24
|
-
"test": null,
|
25
|
-
"updated_at": "2015-07-10T15:10:10+10:00",
|
26
|
-
"charge_type": null,
|
27
|
-
"decorated_return_url": "http:\/\/google.com?charge_id=803748",
|
28
|
-
"confirmation_url": "https:\/\/this-is-my-test-shop.myshopify.com\/admin\/charges\/803748\/confirm_application_charge?signature=BAhpA6RDDA%3D%3D--ef4769e2c1149de0ed19dee9ecddaa155baa7baf"
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"api_client_id": 861378,
|
32
|
-
"created_at": "2015-07-10T15:03:51+10:00",
|
33
|
-
"id": 803742,
|
34
|
-
"name": "iPod Cleaning",
|
35
|
-
"price": "5.00",
|
36
|
-
"return_url": "http:\/\/google.com",
|
37
|
-
"status": "expired",
|
38
|
-
"test": null,
|
39
|
-
"updated_at": "2015-07-10T15:03:51+10:00",
|
40
|
-
"charge_type": null,
|
41
|
-
"decorated_return_url": "http:\/\/google.com?charge_id=803742"
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"api_client_id": 861378,
|
45
|
-
"created_at": "2015-07-10T15:03:51+10:00",
|
46
|
-
"id": 803740,
|
47
|
-
"name": "iPhone Case",
|
48
|
-
"price": "23.00",
|
49
|
-
"return_url": "http:\/\/google.com",
|
50
|
-
"status": "accepted",
|
51
|
-
"test": null,
|
52
|
-
"updated_at": "2015-07-10T15:03:51+10:00",
|
53
|
-
"charge_type": null,
|
54
|
-
"decorated_return_url": "http:\/\/google.com?charge_id=803740"
|
55
|
-
}
|
56
|
-
]
|
57
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"application_credit": {
|
3
|
-
"id": 803742,
|
4
|
-
"api_client_id": 861378,
|
5
|
-
"partner_id": 549861,
|
6
|
-
"shop_id": 487168,
|
7
|
-
"amount": "5.00",
|
8
|
-
"description": "refund for application charge",
|
9
|
-
"created_at": "2015-07-10T15:03:51+10:00",
|
10
|
-
"updated_at": "2015-07-10T15:03:51+10:00"
|
11
|
-
}
|
12
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"application_charges": [
|
3
|
-
{
|
4
|
-
"id": 803742,
|
5
|
-
"api_client_id": 861378,
|
6
|
-
"shop_id": 487168,
|
7
|
-
"amount": "5.00",
|
8
|
-
"billing_status": "pending",
|
9
|
-
"description": "refund for application charge",
|
10
|
-
"created_at": "2015-07-10T15:03:51+10:00",
|
11
|
-
"updated_at": "2015-07-10T15:03:51+10:00"
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"id": 803743,
|
15
|
-
"api_client_id": 861378,
|
16
|
-
"shop_id": 487168,
|
17
|
-
"amount": "10.00",
|
18
|
-
"billing_status": "pending",
|
19
|
-
"description": "refund for application charge",
|
20
|
-
"created_at": "2015-07-10T15:03:51+10:00",
|
21
|
-
"updated_at": "2015-07-10T15:03:51+10:00"
|
22
|
-
}
|
23
|
-
]
|
24
|
-
}
|
data/test/fixtures/article.json
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"article": {
|
3
|
-
"author": "Shopify",
|
4
|
-
"blog_id": 1008414260,
|
5
|
-
"body_html": null,
|
6
|
-
"created_at": "2012-07-06T13:57:28-04:00",
|
7
|
-
"id": 6242736,
|
8
|
-
"published_at": "2012-07-06T13:57:28-04:00",
|
9
|
-
"summary_html": null,
|
10
|
-
"title": "First Post",
|
11
|
-
"updated_at": "2012-07-06T13:57:51-04:00",
|
12
|
-
"user_id": null,
|
13
|
-
"tags": "consequuntur, cupiditate, repellendus"
|
14
|
-
}
|
15
|
-
}
|
data/test/fixtures/articles.json
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"articles": [{
|
3
|
-
"author": "Shopify",
|
4
|
-
"blog_id": 1008414260,
|
5
|
-
"body_html": null,
|
6
|
-
"created_at": "2012-07-06T13:57:28-04:00",
|
7
|
-
"id": 6242736,
|
8
|
-
"published_at": "2012-07-06T13:57:28-04:00",
|
9
|
-
"summary_html": null,
|
10
|
-
"title": "First Post",
|
11
|
-
"updated_at": "2012-07-06T13:57:51-04:00",
|
12
|
-
"user_id": null,
|
13
|
-
"tags": "consequuntur, cupiditate, repellendus"
|
14
|
-
}, {
|
15
|
-
"author": "development shop",
|
16
|
-
"blog_id": 1008414260,
|
17
|
-
"body_html": null,
|
18
|
-
"created_at": "2013-04-21T18:10:35-04:00",
|
19
|
-
"id": 7739673,
|
20
|
-
"published_at": "2013-04-21T18:10:22-04:00",
|
21
|
-
"summary_html": null,
|
22
|
-
"title": "My second blog post",
|
23
|
-
"updated_at": "2013-04-21T18:10:35-04:00",
|
24
|
-
"user_id": 2221540,
|
25
|
-
"tags": ""
|
26
|
-
}, {
|
27
|
-
"author": "development shop",
|
28
|
-
"blog_id": 1008414260,
|
29
|
-
"body_html": null,
|
30
|
-
"created_at": "2013-04-21T18:11:19-04:00",
|
31
|
-
"id": 7739683,
|
32
|
-
"published_at": "2013-04-21T18:10:45-04:00",
|
33
|
-
"summary_html": null,
|
34
|
-
"title": "50% off sale",
|
35
|
-
"updated_at": "2013-04-21T18:11:19-04:00",
|
36
|
-
"user_id": 2221540,
|
37
|
-
"tags": ""
|
38
|
-
}]
|
39
|
-
}
|
data/test/fixtures/asset.json
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"asset": {
|
3
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
4
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
5
|
-
"public_url": null,
|
6
|
-
"value": "<!-- LIST 3 PER ROW -->\n<h2>Featured Products</h2>\n<table id=\"products\" cellspacing=\"0\" cellpadding=\"0\">\n{% tablerow product in collections.frontpage.products cols:3 %}\n <a href=\"{{product.url}}\">{{ product.featured_image | product_img_url: 'small' | img_tag }}</a>\n <h3><a href=\"{{product.url}}\">{{product.title}}</a></h3>\n <ul class=\"attributes\">\n <li><span class=\"money\">{{product.price_min | money}}</span></li>\n </ul>\n{% endtablerow %}\n</table>\n<!-- /LIST 3 PER ROW -->\n\n <div id=\"articles\">\n \t{% assign article = pages.frontpage %}\n\n <div class=\"article\">\n {% if article.content != \"\" %}\n\t\t <h3>{{ article.title }}</h3>\n <div class=\"article-body textile\">\n \t\t {{ article.content }}\n \t\t</div>\n \t{% else %}\n <div class=\"article-body textile\">\n \t In <em>Admin > Blogs & Pages</em>, create a page with the handle <strong><code>frontpage</code></strong> and it will show up here.<br />\n \t {{ \"Learn more about handles\" | link_to \"http://wiki.shopify.com/Handle\" }}\n </div>\n \t{% endif %}\n </div>\n\n </div>\n\n",
|
7
|
-
"key": "templates/index.liquid"
|
8
|
-
}
|
9
|
-
}
|
data/test/fixtures/assets.json
DELETED
@@ -1,136 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"assets": [
|
3
|
-
{
|
4
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
5
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
6
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body-green.gif?1",
|
7
|
-
"key": "assets/bg-body-green.gif"
|
8
|
-
},
|
9
|
-
{
|
10
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
11
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
12
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body-orange.gif?1",
|
13
|
-
"key": "assets/bg-body-orange.gif"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
17
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
18
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body-pink.gif?1",
|
19
|
-
"key": "assets/bg-body-pink.gif"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
23
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
24
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-body.gif?1",
|
25
|
-
"key": "assets/bg-body.gif"
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
29
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
30
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-content.gif?1",
|
31
|
-
"key": "assets/bg-content.gif"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
35
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
36
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-footer.gif?1",
|
37
|
-
"key": "assets/bg-footer.gif"
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
41
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
42
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-main.gif?1",
|
43
|
-
"key": "assets/bg-main.gif"
|
44
|
-
},
|
45
|
-
{
|
46
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
47
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
48
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/bg-sidebar.gif?1",
|
49
|
-
"key": "assets/bg-sidebar.gif"
|
50
|
-
},
|
51
|
-
{
|
52
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
53
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
54
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/shop.css?1",
|
55
|
-
"key": "assets/shop.css"
|
56
|
-
},
|
57
|
-
{
|
58
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
59
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
60
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/shop.css.liquid?1",
|
61
|
-
"key": "assets/shop.css.liquid"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
65
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
66
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/shop.js?1",
|
67
|
-
"key": "assets/shop.js"
|
68
|
-
},
|
69
|
-
{
|
70
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
71
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
72
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/sidebar-devider.gif?1",
|
73
|
-
"key": "assets/sidebar-devider.gif"
|
74
|
-
},
|
75
|
-
{
|
76
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
77
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
78
|
-
"public_url": "http://static.shopify.com/s/files/1/6909/3384/t/1/assets/sidebar-menu.jpg?1",
|
79
|
-
"key": "assets/sidebar-menu.jpg"
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
83
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
84
|
-
"public_url": null,
|
85
|
-
"key": "config/settings.html"
|
86
|
-
},
|
87
|
-
{
|
88
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
89
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
90
|
-
"public_url": null,
|
91
|
-
"key": "layout/theme.liquid"
|
92
|
-
},
|
93
|
-
{
|
94
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
95
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
96
|
-
"public_url": null,
|
97
|
-
"key": "templates/article.liquid"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
101
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
102
|
-
"public_url": null,
|
103
|
-
"key": "templates/blog.liquid"
|
104
|
-
},
|
105
|
-
{
|
106
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
107
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
108
|
-
"public_url": null,
|
109
|
-
"key": "templates/cart.liquid"
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
113
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
114
|
-
"public_url": null,
|
115
|
-
"key": "templates/collection.liquid"
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
119
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
120
|
-
"public_url": null,
|
121
|
-
"key": "templates/index.liquid"
|
122
|
-
},
|
123
|
-
{
|
124
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
125
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
126
|
-
"public_url": null,
|
127
|
-
"key": "templates/page.liquid"
|
128
|
-
},
|
129
|
-
{
|
130
|
-
"created_at": "2010-07-12T15:31:50-04:00",
|
131
|
-
"updated_at": "2010-07-12T15:31:50-04:00",
|
132
|
-
"public_url": null,
|
133
|
-
"key": "templates/product.liquid"
|
134
|
-
}
|
135
|
-
]
|
136
|
-
}
|
data/test/fixtures/authors.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"authors": ["Shopify", "development shop", "development shop"]}
|
data/test/fixtures/blog.json
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"blog": {
|
3
|
-
"handle": "test-blog",
|
4
|
-
"created_at": "2012-01-10T17:45:19-05:00",
|
5
|
-
"title": "Test Blog",
|
6
|
-
"template_suffix": null,
|
7
|
-
"updated_at": "2012-01-10T17:45:19-05:00",
|
8
|
-
"feedburner_location": null,
|
9
|
-
"id": 1008414260,
|
10
|
-
"feedburner": null,
|
11
|
-
"commentable": "no"
|
12
|
-
}
|
13
|
-
}
|
data/test/fixtures/blogs.json
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"blogs": [{
|
3
|
-
"handle": "test-blog",
|
4
|
-
"created_at": "2012-01-10T17:45:19-05:00",
|
5
|
-
"title": "Test Blog",
|
6
|
-
"template_suffix": null,
|
7
|
-
"updated_at": "2012-01-10T17:45:19-05:00",
|
8
|
-
"feedburner_location": null,
|
9
|
-
"id": 1008414260,
|
10
|
-
"feedburner": null,
|
11
|
-
"commentable": "no"
|
12
|
-
}]
|
13
|
-
}
|
data/test/fixtures/carts.json
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"carts": [
|
3
|
-
{
|
4
|
-
"id": 2,
|
5
|
-
"note": null,
|
6
|
-
"token": "3eed8183d4281db6ea82ee2b8f23e9cc",
|
7
|
-
"updated_at": "2012-02-13T14:39:37-05:00",
|
8
|
-
"line_items":
|
9
|
-
[
|
10
|
-
{
|
11
|
-
"id": 1,
|
12
|
-
"title": "test",
|
13
|
-
"price": "1.00",
|
14
|
-
"line_price": "1.00",
|
15
|
-
"quantity": 1,
|
16
|
-
"sku": "",
|
17
|
-
"grams": 1000,
|
18
|
-
"vendor": "test",
|
19
|
-
"variant_id": 1
|
20
|
-
}
|
21
|
-
]
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"id": 1,
|
25
|
-
"note": "",
|
26
|
-
"token": "49801807939c296be1e9a4bf6783a705",
|
27
|
-
"updated_at": "2012-02-13T14:39:12-05:00",
|
28
|
-
"line_items":[
|
29
|
-
{
|
30
|
-
"id": 1,
|
31
|
-
"title": "test",
|
32
|
-
"price": "1.00",
|
33
|
-
"line_price": "1.00",
|
34
|
-
"quantity": 1,
|
35
|
-
"sku": "",
|
36
|
-
"grams": 1000,
|
37
|
-
"vendor": "test",
|
38
|
-
"variant_id": 1
|
39
|
-
}
|
40
|
-
]
|
41
|
-
}
|
42
|
-
]
|
43
|
-
}
|