ruby_shopify_api 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE.md +36 -0
- data/.github/probots.yml +2 -0
- data/.github/workflows/build.yml +43 -0
- data/.gitignore +15 -0
- data/.rubocop.yml +28 -0
- data/.rubocop_todo.yml +75 -0
- data/CHANGELOG-OLD.md +501 -0
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +8 -0
- data/CONTRIBUTORS +3 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +151 -0
- data/Gemfile_ar41 +5 -0
- data/Gemfile_ar50 +5 -0
- data/Gemfile_ar51 +5 -0
- data/Gemfile_ar60 +5 -0
- data/Gemfile_ar_main +5 -0
- data/LICENSE +20 -0
- data/README.md +649 -0
- data/RELEASING +17 -0
- data/Rakefile +55 -0
- data/SECURITY.md +59 -0
- data/dev.yml +11 -0
- data/docker-compose.yml +13 -0
- data/docs/_config.yml +1 -0
- data/docs/_includes/footer.html +28 -0
- data/docs/_includes/head.html +28 -0
- data/docs/_layouts/index.html +57 -0
- data/docs/graphql.md +241 -0
- data/docs/index.md +639 -0
- data/lib/active_resource/connection_ext.rb +11 -0
- data/lib/active_resource/detailed_log_subscriber.rb +55 -0
- data/lib/active_resource/json_errors.rb +37 -0
- data/lib/shopify_api/api_access.rb +57 -0
- data/lib/shopify_api/api_version.rb +206 -0
- data/lib/shopify_api/connection.rb +36 -0
- data/lib/shopify_api/countable.rb +15 -0
- data/lib/shopify_api/disable_prefix_check.rb +31 -0
- data/lib/shopify_api/events.rb +8 -0
- data/lib/shopify_api/graphql/http_client.rb +22 -0
- data/lib/shopify_api/graphql/railtie.rb +17 -0
- data/lib/shopify_api/graphql/task.rake +100 -0
- data/lib/shopify_api/graphql.rb +103 -0
- data/lib/shopify_api/hmac_params.rb +33 -0
- data/lib/shopify_api/limits.rb +77 -0
- data/lib/shopify_api/message_enricher.rb +25 -0
- data/lib/shopify_api/meta.rb +14 -0
- data/lib/shopify_api/metafields.rb +21 -0
- data/lib/shopify_api/paginated_collection.rb +69 -0
- data/lib/shopify_api/pagination_link_headers.rb +34 -0
- data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
- data/lib/shopify_api/resources/access_scope.rb +10 -0
- data/lib/shopify_api/resources/access_token.rb +9 -0
- data/lib/shopify_api/resources/address.rb +5 -0
- data/lib/shopify_api/resources/announcement.rb +5 -0
- data/lib/shopify_api/resources/api_permission.rb +9 -0
- data/lib/shopify_api/resources/application_charge.rb +16 -0
- data/lib/shopify_api/resources/application_credit.rb +5 -0
- data/lib/shopify_api/resources/array_base.rb +13 -0
- data/lib/shopify_api/resources/article.rb +22 -0
- data/lib/shopify_api/resources/asset.rb +101 -0
- data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
- data/lib/shopify_api/resources/base.rb +166 -0
- data/lib/shopify_api/resources/billing_address.rb +5 -0
- data/lib/shopify_api/resources/blog.rb +11 -0
- data/lib/shopify_api/resources/carrier_service.rb +5 -0
- data/lib/shopify_api/resources/cart.rb +5 -0
- data/lib/shopify_api/resources/checkout.rb +30 -0
- data/lib/shopify_api/resources/collect.rb +7 -0
- data/lib/shopify_api/resources/collection.rb +14 -0
- data/lib/shopify_api/resources/collection_listing.rb +19 -0
- data/lib/shopify_api/resources/collection_publication.rb +10 -0
- data/lib/shopify_api/resources/comment.rb +24 -0
- data/lib/shopify_api/resources/country.rb +5 -0
- data/lib/shopify_api/resources/currency.rb +6 -0
- data/lib/shopify_api/resources/custom_collection.rb +20 -0
- data/lib/shopify_api/resources/customer.rb +30 -0
- data/lib/shopify_api/resources/customer_group.rb +6 -0
- data/lib/shopify_api/resources/customer_invite.rb +5 -0
- data/lib/shopify_api/resources/customer_saved_search.rb +12 -0
- data/lib/shopify_api/resources/discount_code.rb +10 -0
- data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
- data/lib/shopify_api/resources/draft_order.rb +15 -0
- data/lib/shopify_api/resources/draft_order_invoice.rb +5 -0
- data/lib/shopify_api/resources/event.rb +9 -0
- data/lib/shopify_api/resources/fulfillment.rb +56 -0
- data/lib/shopify_api/resources/fulfillment_event.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
- data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_request.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_service.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
- data/lib/shopify_api/resources/gift_card.rb +8 -0
- data/lib/shopify_api/resources/image.rb +17 -0
- data/lib/shopify_api/resources/inventory_item.rb +6 -0
- data/lib/shopify_api/resources/inventory_level.rb +54 -0
- data/lib/shopify_api/resources/line_item.rb +15 -0
- data/lib/shopify_api/resources/location.rb +8 -0
- data/lib/shopify_api/resources/marketing_event.rb +11 -0
- data/lib/shopify_api/resources/metafield.rb +14 -0
- data/lib/shopify_api/resources/note_attribute.rb +5 -0
- data/lib/shopify_api/resources/option.rb +5 -0
- data/lib/shopify_api/resources/order.rb +44 -0
- data/lib/shopify_api/resources/order_risk.rb +9 -0
- data/lib/shopify_api/resources/page.rb +7 -0
- data/lib/shopify_api/resources/payment.rb +7 -0
- data/lib/shopify_api/resources/payment_details.rb +5 -0
- data/lib/shopify_api/resources/ping.rb +3 -0
- data/lib/shopify_api/resources/policy.rb +8 -0
- data/lib/shopify_api/resources/price_rule.rb +8 -0
- data/lib/shopify_api/resources/product.rb +59 -0
- data/lib/shopify_api/resources/product_listing.rb +17 -0
- data/lib/shopify_api/resources/product_publication.rb +10 -0
- data/lib/shopify_api/resources/province.rb +6 -0
- data/lib/shopify_api/resources/publication.rb +5 -0
- data/lib/shopify_api/resources/receipt.rb +5 -0
- data/lib/shopify_api/resources/recurring_application_charge.rb +34 -0
- data/lib/shopify_api/resources/redirect.rb +5 -0
- data/lib/shopify_api/resources/refund.rb +15 -0
- data/lib/shopify_api/resources/report.rb +5 -0
- data/lib/shopify_api/resources/resource_feedback.rb +19 -0
- data/lib/shopify_api/resources/rule.rb +5 -0
- data/lib/shopify_api/resources/script_tag.rb +5 -0
- data/lib/shopify_api/resources/shipping_address.rb +5 -0
- data/lib/shopify_api/resources/shipping_line.rb +5 -0
- data/lib/shopify_api/resources/shipping_rate.rb +7 -0
- data/lib/shopify_api/resources/shipping_zone.rb +5 -0
- data/lib/shopify_api/resources/shop.rb +26 -0
- data/lib/shopify_api/resources/smart_collection.rb +15 -0
- data/lib/shopify_api/resources/storefront_access_token.rb +5 -0
- data/lib/shopify_api/resources/tax_line.rb +5 -0
- data/lib/shopify_api/resources/tax_service.rb +5 -0
- data/lib/shopify_api/resources/tender_transaction.rb +6 -0
- data/lib/shopify_api/resources/theme.rb +5 -0
- data/lib/shopify_api/resources/transaction.rb +6 -0
- data/lib/shopify_api/resources/usage_charge.rb +6 -0
- data/lib/shopify_api/resources/user.rb +5 -0
- data/lib/shopify_api/resources/variant.rb +43 -0
- data/lib/shopify_api/resources/webhook.rb +5 -0
- data/lib/shopify_api/resources.rb +4 -0
- data/lib/shopify_api/session.rb +203 -0
- data/lib/shopify_api/version.rb +4 -0
- data/lib/shopify_api.rb +45 -0
- data/lib/verify_docs.rb +8 -0
- data/service.yml +2 -0
- data/shipit.rubygems.yml +1 -0
- data/shopify_api.gemspec +47 -0
- data/test/abandoned_checkouts_test.rb +29 -0
- data/test/access_scope_test.rb +23 -0
- data/test/access_token_test.rb +20 -0
- data/test/active_resource/json_errors_test.rb +19 -0
- data/test/api_access_test.rb +153 -0
- data/test/api_permission_test.rb +9 -0
- data/test/api_version_test.rb +157 -0
- data/test/application_charge_test.rb +82 -0
- data/test/application_credit_test.rb +36 -0
- data/test/article_test.rb +72 -0
- data/test/asset_test.rb +26 -0
- data/test/assigned_fulfillment_order_test.rb +78 -0
- data/test/base_test.rb +213 -0
- data/test/blog_test.rb +9 -0
- data/test/carrier_service_test.rb +18 -0
- data/test/cart_test.rb +14 -0
- data/test/checkouts_test.rb +77 -0
- data/test/collect_test.rb +10 -0
- data/test/collection_listing_test.rb +84 -0
- data/test/collection_publication_test.rb +40 -0
- data/test/collection_test.rb +50 -0
- data/test/countable_test.rb +14 -0
- data/test/currency_test.rb +21 -0
- data/test/custom_collection_test.rb +10 -0
- data/test/customer_saved_search_test.rb +37 -0
- data/test/customer_test.rb +58 -0
- data/test/detailed_log_subscriber_test.rb +143 -0
- data/test/discount_code_batch_test.rb +41 -0
- data/test/discount_code_test.rb +59 -0
- data/test/draft_order_test.rb +167 -0
- data/test/fixtures/abandoned_checkout.json +184 -0
- data/test/fixtures/abandoned_checkouts.json +186 -0
- data/test/fixtures/access_scopes.json +10 -0
- data/test/fixtures/access_token_delegate.json +4 -0
- data/test/fixtures/api_versions.json +38 -0
- data/test/fixtures/apis.json +42 -0
- data/test/fixtures/application_charge.json +16 -0
- data/test/fixtures/application_charges.json +57 -0
- data/test/fixtures/application_credit.json +12 -0
- data/test/fixtures/application_credits.json +24 -0
- data/test/fixtures/article.json +15 -0
- data/test/fixtures/articles.json +39 -0
- data/test/fixtures/asset.json +9 -0
- data/test/fixtures/assets.json +136 -0
- data/test/fixtures/assigned_fulfillment_orders.json +80 -0
- data/test/fixtures/authors.json +1 -0
- data/test/fixtures/blog.json +13 -0
- data/test/fixtures/blogs.json +13 -0
- data/test/fixtures/carrier_service.json +9 -0
- data/test/fixtures/carts.json +43 -0
- data/test/fixtures/checkout.json +160 -0
- data/test/fixtures/checkouts.json +162 -0
- data/test/fixtures/collect.json +12 -0
- data/test/fixtures/collection.json +17 -0
- data/test/fixtures/collection_listing.json +11 -0
- data/test/fixtures/collection_listing_product_ids.json +1 -0
- data/test/fixtures/collection_listing_product_ids2.json +1 -0
- data/test/fixtures/collection_listings.json +13 -0
- data/test/fixtures/collection_products.json +47 -0
- data/test/fixtures/collection_publication.json +11 -0
- data/test/fixtures/collection_publications.json +13 -0
- data/test/fixtures/currencies.json +25 -0
- data/test/fixtures/custom_collection.json +17 -0
- data/test/fixtures/customer_invite.json +9 -0
- data/test/fixtures/customer_saved_search.json +9 -0
- data/test/fixtures/customer_saved_search_customers.json +60 -0
- data/test/fixtures/customers.json +59 -0
- data/test/fixtures/customers_account_activation_url.json +3 -0
- data/test/fixtures/customers_search.json +60 -0
- data/test/fixtures/discount_code.json +10 -0
- data/test/fixtures/discount_code_batch.json +14 -0
- data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
- data/test/fixtures/discount_codes.json +12 -0
- data/test/fixtures/draft_order.json +159 -0
- data/test/fixtures/draft_order_completed.json +159 -0
- data/test/fixtures/draft_order_invoice.json +9 -0
- data/test/fixtures/draft_orders.json +161 -0
- data/test/fixtures/engagement.json +15 -0
- data/test/fixtures/events.json +31 -0
- data/test/fixtures/fulfillment.json +49 -0
- data/test/fixtures/fulfillment_event.json +12 -0
- data/test/fixtures/fulfillment_order.json +39 -0
- data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
- data/test/fixtures/fulfillment_orders.json +80 -0
- data/test/fixtures/fulfillment_request.json +28 -0
- data/test/fixtures/fulfillment_service.json +10 -0
- data/test/fixtures/fulfillments.json +53 -0
- data/test/fixtures/gift_card.json +20 -0
- data/test/fixtures/gift_card_disabled.json +20 -0
- data/test/fixtures/graphql/2019-10.json +1083 -0
- data/test/fixtures/graphql/dummy_schema.rb +16 -0
- data/test/fixtures/graphql/unstable.json +1083 -0
- data/test/fixtures/image.json +10 -0
- data/test/fixtures/images.json +20 -0
- data/test/fixtures/inventory_level.json +7 -0
- data/test/fixtures/inventory_levels.json +24 -0
- data/test/fixtures/marketing_event.json +28 -0
- data/test/fixtures/marketing_events.json +54 -0
- data/test/fixtures/metafield.json +12 -0
- data/test/fixtures/metafields.json +34 -0
- data/test/fixtures/order.json +297 -0
- data/test/fixtures/order_risk.json +14 -0
- data/test/fixtures/order_risks.json +28 -0
- data/test/fixtures/order_with_properties.json +373 -0
- data/test/fixtures/orders.json +299 -0
- data/test/fixtures/payment.json +7 -0
- data/test/fixtures/payments.json +9 -0
- data/test/fixtures/ping/conversation.json +1 -0
- data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
- data/test/fixtures/ping/message.json +1 -0
- data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
- data/test/fixtures/policies.json +8 -0
- data/test/fixtures/price_rule.json +27 -0
- data/test/fixtures/price_rules.json +28 -0
- data/test/fixtures/product.json +116 -0
- data/test/fixtures/product_listing.json +86 -0
- data/test/fixtures/product_listing_product_ids.json +1 -0
- data/test/fixtures/product_listing_product_ids2.json +1 -0
- data/test/fixtures/product_listings.json +174 -0
- data/test/fixtures/product_publication.json +11 -0
- data/test/fixtures/product_publications.json +13 -0
- data/test/fixtures/publications.json +9 -0
- data/test/fixtures/recurring_application_charge.json +22 -0
- data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
- data/test/fixtures/recurring_application_charges.json +106 -0
- data/test/fixtures/redirect.json +7 -0
- data/test/fixtures/refund.json +112 -0
- data/test/fixtures/report.json +9 -0
- data/test/fixtures/reports.json +11 -0
- data/test/fixtures/script_tag.json +10 -0
- data/test/fixtures/script_tags.json +18 -0
- data/test/fixtures/shipping_rates.json +12 -0
- data/test/fixtures/shipping_zones.json +315 -0
- data/test/fixtures/shop.json +26 -0
- data/test/fixtures/smart_collection.json +21 -0
- data/test/fixtures/smart_collection_products.json +155 -0
- data/test/fixtures/storefront_access_token.json +9 -0
- data/test/fixtures/storefront_access_tokens.json +18 -0
- data/test/fixtures/tags.json +1 -0
- data/test/fixtures/tax_service.json +9 -0
- data/test/fixtures/tender_transactions.json +52 -0
- data/test/fixtures/transaction.json +29 -0
- data/test/fixtures/usage_charge.json +11 -0
- data/test/fixtures/usage_charges.json +23 -0
- data/test/fixtures/user.json +21 -0
- data/test/fixtures/users.json +42 -0
- data/test/fixtures/variant.json +23 -0
- data/test/fixtures/variants.json +88 -0
- data/test/fixtures/webhook.json +10 -0
- data/test/fixtures/webhooks.json +18 -0
- data/test/fulfillment_event_test.rb +74 -0
- data/test/fulfillment_order_test.rb +530 -0
- data/test/fulfillment_order_test_helper.rb +8 -0
- data/test/fulfillment_request_test.rb +35 -0
- data/test/fulfillment_service_test.rb +18 -0
- data/test/fulfillment_test.rb +239 -0
- data/test/fulfillment_v2_test.rb +66 -0
- data/test/gift_card_test.rb +24 -0
- data/test/graphql/http_client_test.rb +26 -0
- data/test/graphql_test.rb +190 -0
- data/test/hmac_params_test.rb +25 -0
- data/test/image_test.rb +41 -0
- data/test/inventory_level_test.rb +68 -0
- data/test/lib/webmock_extensions/last_request.rb +16 -0
- data/test/limits_test.rb +39 -0
- data/test/location_test.rb +15 -0
- data/test/marketing_event_test.rb +68 -0
- data/test/message_enricher_test.rb +45 -0
- data/test/meta_test.rb +47 -0
- data/test/metafield_test.rb +56 -0
- data/test/order_risk_test.rb +47 -0
- data/test/order_test.rb +140 -0
- data/test/pagination_test.rb +290 -0
- data/test/payment_test.rb +19 -0
- data/test/policy_test.rb +20 -0
- data/test/price_rule_test.rb +70 -0
- data/test/product_listing_test.rb +97 -0
- data/test/product_publication_test.rb +40 -0
- data/test/product_test.rb +111 -0
- data/test/publication_test.rb +12 -0
- data/test/recurring_application_charge_test.rb +204 -0
- data/test/redirect_test.rb +10 -0
- data/test/refund_test.rb +37 -0
- data/test/report_test.rb +37 -0
- data/test/resource_feedback_test.rb +43 -0
- data/test/script_tag_test.rb +31 -0
- data/test/session_test.rb +640 -0
- data/test/shipping_rate_test.rb +17 -0
- data/test/shipping_zone_test.rb +11 -0
- data/test/shop_test.rb +82 -0
- data/test/smart_collection_test.rb +11 -0
- data/test/storefront_access_token_test.rb +30 -0
- data/test/tax_service_test.rb +12 -0
- data/test/tender_transaction_test.rb +18 -0
- data/test/test_helper.rb +126 -0
- data/test/transaction_test.rb +18 -0
- data/test/usage_charge_test.rb +25 -0
- data/test/user_test.rb +18 -0
- data/test/variant_test.rb +73 -0
- data/test/webhook_test.rb +24 -0
- metadata +555 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class DiscountCodeTest < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
super
|
7
|
+
fake('price_rules/102586120/discount_codes/1002091923', body: load_fixture('discount_code'))
|
8
|
+
|
9
|
+
@discount_code = ShopifyAPI::DiscountCode.find(1002091923, params: { price_rule_id: 102586120 })
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_get_discount_code
|
13
|
+
fake('price_rules/102586120/discount_codes', method: :get, status: 200, body: load_fixture('discount_code'))
|
14
|
+
discount_code = ShopifyAPI::DiscountCode.find(1002091923, params: { price_rule_id: 102586120 })
|
15
|
+
|
16
|
+
assert_equal(1002091923, discount_code.id)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_get_all_discount_codes
|
20
|
+
fake('price_rules/102586120/discount_codes', method: :get, status: 200, body: load_fixture('discount_codes'))
|
21
|
+
discount_codes = ShopifyAPI::DiscountCode.all(params: { price_rule_id: 102586120 })
|
22
|
+
|
23
|
+
assert_equal(1, discount_codes.length)
|
24
|
+
assert_equal(1002091923, discount_codes.first.id)
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_create_discount_code
|
28
|
+
fake('price_rules/102586120/discount_codes', method: :post, status: 201, body: load_fixture('discount_code'))
|
29
|
+
discount_code = ShopifyAPI::DiscountCode.new
|
30
|
+
discount_code.prefix_options[:price_rule_id] = 102586120
|
31
|
+
discount_code.code = "SUMMERSALE10"
|
32
|
+
discount_code.save
|
33
|
+
|
34
|
+
assert_equal('{"discount_code":{"code":"SUMMERSALE10"}}', WebMock.last_request.body)
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_update_discount_code
|
38
|
+
discount_code_response = ActiveSupport::JSON.decode(load_fixture('discount_code'))
|
39
|
+
discount_code_response['discount_code']['code'] = "WINTERSALE50"
|
40
|
+
@discount_code.code = "WINTERSALE50"
|
41
|
+
|
42
|
+
fake(
|
43
|
+
'price_rules/102586120/discount_codes/1002091923',
|
44
|
+
method: :put,
|
45
|
+
status: 200,
|
46
|
+
body: ActiveSupport::JSON.encode(discount_code_response)
|
47
|
+
)
|
48
|
+
|
49
|
+
@discount_code.save
|
50
|
+
|
51
|
+
assert_equal(discount_code_response['discount_code']['code'], @discount_code.code)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_delete_discount_code
|
55
|
+
fake('price_rules/102586120/discount_codes/1002091923', method: :delete, body: 'destroyed')
|
56
|
+
|
57
|
+
assert(@discount_code.destroy)
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,167 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class DraftOrderTest < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
super
|
7
|
+
|
8
|
+
fake('draft_orders/517119332', body: load_fixture('draft_order'))
|
9
|
+
|
10
|
+
@draft_order = ShopifyAPI::DraftOrder.find(517119332)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_get_draft_order
|
14
|
+
fake('draft_orders/517119332', method: :get, status: 200, body: load_fixture('draft_order'))
|
15
|
+
|
16
|
+
draft_order = ShopifyAPI::DraftOrder.find(517119332)
|
17
|
+
|
18
|
+
assert_equal(517119332, draft_order.id)
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_get_all_draft_orders
|
22
|
+
fake('draft_orders', method: :get, status: 200, body: load_fixture('draft_orders'))
|
23
|
+
|
24
|
+
draft_orders = ShopifyAPI::DraftOrder.all
|
25
|
+
|
26
|
+
assert_equal(1, draft_orders.length)
|
27
|
+
assert_equal(517119332, draft_orders.first.id)
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_get_count_draft_orders
|
31
|
+
fake('draft_orders/count', method: :get, status: 200, body: '{"count": 16}')
|
32
|
+
|
33
|
+
draft_orders_count = ShopifyAPI::DraftOrder.count
|
34
|
+
|
35
|
+
assert_equal(16, draft_orders_count)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_create_draft_order
|
39
|
+
fake('draft_orders', method: :post, status: 201, body: load_fixture('draft_order'))
|
40
|
+
|
41
|
+
draft_order = ShopifyAPI::DraftOrder.create(line_items: [{ quantity: 1, variant_id: 39072856 }])
|
42
|
+
|
43
|
+
assert_equal('{"draft_order":{"line_items":[{"quantity":1,"variant_id":39072856}]}}', WebMock.last_request.body)
|
44
|
+
assert_equal(39072856, draft_order.line_items.first.variant_id)
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_create_draft_order_202
|
48
|
+
fake('draft_orders', method: :post, status: 202, body: load_fixture('draft_order'))
|
49
|
+
|
50
|
+
draft_order = ShopifyAPI::DraftOrder.create(line_items: [{ quantity: 1, variant_id: 39072856 }])
|
51
|
+
|
52
|
+
assert_equal(39072856, draft_order.line_items.first.variant_id)
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_update_draft_order
|
56
|
+
draft_order_response = ActiveSupport::JSON.decode(load_fixture('draft_order'))
|
57
|
+
draft_order_response['draft_order']['note'] = 'Test new note'
|
58
|
+
@draft_order.note = 'Test new note'
|
59
|
+
fake('draft_orders/517119332', method: :put, status: 200, body: ActiveSupport::JSON.encode(draft_order_response))
|
60
|
+
|
61
|
+
@draft_order.save
|
62
|
+
|
63
|
+
assert_equal(draft_order_response['draft_order']['note'], @draft_order.note)
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_send_invoice_with_no_params
|
67
|
+
draft_order_invoice_fixture = load_fixture('draft_order_invoice')
|
68
|
+
draft_order_invoice = ActiveSupport::JSON.decode(draft_order_invoice_fixture)
|
69
|
+
fake('draft_orders/517119332/send_invoice', method: :post, body: draft_order_invoice_fixture)
|
70
|
+
|
71
|
+
draft_order_invoice_response = @draft_order.send_invoice
|
72
|
+
|
73
|
+
assert_equal('{"draft_order_invoice":{}}', WebMock.last_request.body)
|
74
|
+
assert_kind_of(ShopifyAPI::DraftOrderInvoice, draft_order_invoice_response)
|
75
|
+
assert_equal(draft_order_invoice['draft_order_invoice']['to'], draft_order_invoice_response.to)
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_send_invoice_with_params
|
79
|
+
draft_order_invoice_fixture = load_fixture('draft_order_invoice')
|
80
|
+
draft_order_invoice = ActiveSupport::JSON.decode(draft_order_invoice_fixture)
|
81
|
+
fake('draft_orders/517119332/send_invoice', method: :post, body: draft_order_invoice_fixture)
|
82
|
+
|
83
|
+
draft_order_invoice_response = @draft_order.send_invoice(
|
84
|
+
ShopifyAPI::DraftOrderInvoice.new(draft_order_invoice['draft_order_invoice'])
|
85
|
+
)
|
86
|
+
|
87
|
+
assert_equal(draft_order_invoice, ActiveSupport::JSON.decode(WebMock.last_request.body))
|
88
|
+
assert_kind_of(ShopifyAPI::DraftOrderInvoice, draft_order_invoice_response)
|
89
|
+
assert_equal(draft_order_invoice['draft_order_invoice']['to'], draft_order_invoice_response.to)
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_delete_draft_order
|
93
|
+
fake('draft_orders/517119332', method: :delete, body: 'destroyed')
|
94
|
+
assert(@draft_order.destroy)
|
95
|
+
end
|
96
|
+
|
97
|
+
def test_add_metafields_to_draft_order
|
98
|
+
fake('draft_orders/517119332/metafields', method: :post, status: 201, body: load_fixture('metafield'))
|
99
|
+
|
100
|
+
field = @draft_order.add_metafield(
|
101
|
+
ShopifyAPI::Metafield.new(namespace: 'contact', key: 'email', value: '123@example.com', value_type: 'string')
|
102
|
+
)
|
103
|
+
|
104
|
+
assert_equal(
|
105
|
+
ActiveSupport::JSON.decode(
|
106
|
+
'{"metafield":{"namespace":"contact","key":"email","value":"123@example.com","value_type":"string"}}'
|
107
|
+
),
|
108
|
+
ActiveSupport::JSON.decode(WebMock.last_request.body)
|
109
|
+
)
|
110
|
+
assert(!field.new_record?)
|
111
|
+
assert_equal('contact', field.namespace)
|
112
|
+
assert_equal('email', field.key)
|
113
|
+
assert_equal('123@example.com', field.value)
|
114
|
+
end
|
115
|
+
|
116
|
+
def test_get_all_metafields_for_draft_order
|
117
|
+
fake('draft_orders/517119332/metafields', body: load_fixture('metafields'))
|
118
|
+
|
119
|
+
metafields = @draft_order.metafields
|
120
|
+
|
121
|
+
assert_equal(3, metafields.length)
|
122
|
+
assert(metafields.all? { |m| m.is_a?(ShopifyAPI::Metafield) })
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_get_2_metafields_for_draft_order
|
126
|
+
body = ActiveSupport::JSON.decode(load_fixture('metafields'))
|
127
|
+
body['metafields'].slice!(2, 1)
|
128
|
+
|
129
|
+
fake('draft_orders/517119332/metafields.json?limit=2', body: body.to_json, extension: false)
|
130
|
+
|
131
|
+
metafields = @draft_order.metafields(limit: 2)
|
132
|
+
|
133
|
+
assert_equal(2, metafields.length)
|
134
|
+
assert(metafields.all? { |m| m.is_a?(ShopifyAPI::Metafield) })
|
135
|
+
end
|
136
|
+
|
137
|
+
def test_complete_draft_order_with_no_params
|
138
|
+
completed_fixture = load_fixture('draft_order_completed')
|
139
|
+
completed_draft = ActiveSupport::JSON.decode(completed_fixture)['draft_order']
|
140
|
+
fake('draft_orders/517119332/complete', method: :put, status: 200, body: completed_fixture)
|
141
|
+
|
142
|
+
@draft_order.complete
|
143
|
+
|
144
|
+
assert_equal(completed_draft['status'], @draft_order.status)
|
145
|
+
assert_equal(completed_draft['order_id'], @draft_order.order_id)
|
146
|
+
refute_nil(@draft_order.completed_at)
|
147
|
+
end
|
148
|
+
|
149
|
+
def test_complete_draft_order_with_params
|
150
|
+
completed_fixture = load_fixture('draft_order_completed')
|
151
|
+
completed_draft = ActiveSupport::JSON.decode(completed_fixture)['draft_order']
|
152
|
+
complete_params = { payment_pending: true }
|
153
|
+
fake(
|
154
|
+
'draft_orders/517119332/complete.json?payment_pending=true',
|
155
|
+
extension: false,
|
156
|
+
method: :put,
|
157
|
+
status: 200,
|
158
|
+
body: completed_fixture
|
159
|
+
)
|
160
|
+
|
161
|
+
@draft_order.complete(complete_params)
|
162
|
+
|
163
|
+
assert_equal(completed_draft['status'], @draft_order.status)
|
164
|
+
assert_equal(completed_draft['order_id'], @draft_order.order_id)
|
165
|
+
refute_nil(@draft_order.completed_at)
|
166
|
+
end
|
167
|
+
end
|
@@ -0,0 +1,184 @@
|
|
1
|
+
{
|
2
|
+
"checkout": {
|
3
|
+
"buyer_accepts_marketing": false,
|
4
|
+
"cart_token": "68778783ad298f1c80c3bafcddeea02f",
|
5
|
+
"closed_at": null,
|
6
|
+
"completed_at": null,
|
7
|
+
"created_at": "2012-10-12T07:05:27-04:00",
|
8
|
+
"currency": "USD",
|
9
|
+
"email": "bob.norman@hostmail.com",
|
10
|
+
"gateway": null,
|
11
|
+
"id": 450789469,
|
12
|
+
"landing_site": null,
|
13
|
+
"note": null,
|
14
|
+
"referring_site": null,
|
15
|
+
"shipping_lines": [
|
16
|
+
{
|
17
|
+
"title": "Free Shipping",
|
18
|
+
"price": "0.00",
|
19
|
+
"code": "Free Shipping",
|
20
|
+
"source": "shopify"
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"source": null,
|
24
|
+
"source_identifier": null,
|
25
|
+
"source_name": "web",
|
26
|
+
"source_url": null,
|
27
|
+
"subtotal_price": "398.00",
|
28
|
+
"taxes_included": false,
|
29
|
+
"token": "2a1ace52255252df566af0faaedfbfa7",
|
30
|
+
"total_discounts": "0.00",
|
31
|
+
"total_line_items_price": "398.00",
|
32
|
+
"total_price": "409.94",
|
33
|
+
"total_tax": "11.94",
|
34
|
+
"total_weight": 400,
|
35
|
+
"updated_at": "2012-10-12T07:05:27-04:00",
|
36
|
+
"line_items": [
|
37
|
+
{
|
38
|
+
"applied_discounts": [
|
39
|
+
|
40
|
+
],
|
41
|
+
"compare_at_price": null,
|
42
|
+
"fulfillment_service": "manual",
|
43
|
+
"gift_card": false,
|
44
|
+
"grams": 200,
|
45
|
+
"id": 49148385,
|
46
|
+
"line_price": "199.00",
|
47
|
+
"price": "199.00",
|
48
|
+
"product_id": 632910392,
|
49
|
+
"properties": null,
|
50
|
+
"quantity": 1,
|
51
|
+
"requires_shipping": true,
|
52
|
+
"sku": "IPOD2008RED",
|
53
|
+
"tax_lines": [
|
54
|
+
|
55
|
+
],
|
56
|
+
"taxable": true,
|
57
|
+
"title": "IPod Nano - 8GB",
|
58
|
+
"variant_id": 49148385,
|
59
|
+
"variant_title": "Red",
|
60
|
+
"vendor": "Apple"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"applied_discounts": [
|
64
|
+
|
65
|
+
],
|
66
|
+
"compare_at_price": null,
|
67
|
+
"fulfillment_service": "manual",
|
68
|
+
"gift_card": false,
|
69
|
+
"grams": 200,
|
70
|
+
"id": 808950810,
|
71
|
+
"line_price": "199.00",
|
72
|
+
"price": "199.00",
|
73
|
+
"product_id": 632910392,
|
74
|
+
"properties": null,
|
75
|
+
"quantity": 1,
|
76
|
+
"requires_shipping": true,
|
77
|
+
"sku": "IPOD2008PINK",
|
78
|
+
"tax_lines": [
|
79
|
+
|
80
|
+
],
|
81
|
+
"taxable": true,
|
82
|
+
"title": "IPod Nano - 8GB",
|
83
|
+
"variant_id": 808950810,
|
84
|
+
"variant_title": "Pink",
|
85
|
+
"vendor": "Apple"
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"name": "#450789469",
|
89
|
+
"note_attributes": [
|
90
|
+
{
|
91
|
+
"name": "custom engraving",
|
92
|
+
"value": "Happy Birthday"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"name": "colour",
|
96
|
+
"value": "green"
|
97
|
+
}
|
98
|
+
],
|
99
|
+
"discount_codes": [
|
100
|
+
{
|
101
|
+
"code": "TENOFF",
|
102
|
+
"amount": "10.00"
|
103
|
+
}
|
104
|
+
],
|
105
|
+
"abandoned_checkout_url": "https://checkout.local/orders/690933842/2a1ace52255252df566af0faaedfbfa7?recovered=1",
|
106
|
+
"tax_lines": [
|
107
|
+
{
|
108
|
+
"price": "11.94",
|
109
|
+
"rate": 0.06,
|
110
|
+
"title": "State Tax"
|
111
|
+
}
|
112
|
+
],
|
113
|
+
"billing_address": {
|
114
|
+
"address1": "Chestnut Street 92",
|
115
|
+
"address2": "",
|
116
|
+
"city": "Louisville",
|
117
|
+
"company": null,
|
118
|
+
"country": "United States",
|
119
|
+
"first_name": "Bob",
|
120
|
+
"last_name": "Norman",
|
121
|
+
"latitude": "45.41634",
|
122
|
+
"longitude": "-75.6868",
|
123
|
+
"phone": "555-625-1199",
|
124
|
+
"province": "Kentucky",
|
125
|
+
"zip": "40202",
|
126
|
+
"name": "Bob Norman",
|
127
|
+
"country_code": "US",
|
128
|
+
"province_code": "KY"
|
129
|
+
},
|
130
|
+
"shipping_address": {
|
131
|
+
"address1": "Chestnut Street 92",
|
132
|
+
"address2": "",
|
133
|
+
"city": "Louisville",
|
134
|
+
"company": null,
|
135
|
+
"country": "United States",
|
136
|
+
"first_name": "Bob",
|
137
|
+
"last_name": "Norman",
|
138
|
+
"latitude": "45.41634",
|
139
|
+
"longitude": "-75.6868",
|
140
|
+
"phone": "555-625-1199",
|
141
|
+
"province": "Kentucky",
|
142
|
+
"zip": "40202",
|
143
|
+
"name": "Bob Norman",
|
144
|
+
"country_code": "US",
|
145
|
+
"province_code": "KY"
|
146
|
+
},
|
147
|
+
"customer": {
|
148
|
+
"accepts_marketing": false,
|
149
|
+
"created_at": "2014-03-07T16:12:37-05:00",
|
150
|
+
"email": "bob.norman@hostmail.com",
|
151
|
+
"first_name": "Bob",
|
152
|
+
"id": 207119551,
|
153
|
+
"last_name": "Norman",
|
154
|
+
"last_order_id": null,
|
155
|
+
"multipass_identifier": null,
|
156
|
+
"note": null,
|
157
|
+
"orders_count": 0,
|
158
|
+
"state": "disabled",
|
159
|
+
"total_spent": "0.00",
|
160
|
+
"updated_at": "2014-03-07T16:12:37-05:00",
|
161
|
+
"verified_email": true,
|
162
|
+
"tags": "",
|
163
|
+
"last_order_name": null,
|
164
|
+
"default_address": {
|
165
|
+
"address1": "Chestnut Street 92",
|
166
|
+
"address2": "",
|
167
|
+
"city": "Louisville",
|
168
|
+
"company": null,
|
169
|
+
"country": "United States",
|
170
|
+
"first_name": null,
|
171
|
+
"id": 207119551,
|
172
|
+
"last_name": null,
|
173
|
+
"phone": "555-625-1199",
|
174
|
+
"province": "Kentucky",
|
175
|
+
"zip": "40202",
|
176
|
+
"name": null,
|
177
|
+
"province_code": "KY",
|
178
|
+
"country_code": "US",
|
179
|
+
"country_name": "United States",
|
180
|
+
"default": true
|
181
|
+
}
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
@@ -0,0 +1,186 @@
|
|
1
|
+
{
|
2
|
+
"checkouts": [
|
3
|
+
{
|
4
|
+
"buyer_accepts_marketing": false,
|
5
|
+
"cart_token": "68778783ad298f1c80c3bafcddeea02f",
|
6
|
+
"closed_at": null,
|
7
|
+
"completed_at": null,
|
8
|
+
"created_at": "2012-10-12T07:05:27-04:00",
|
9
|
+
"currency": "USD",
|
10
|
+
"email": "bob.norman@hostmail.com",
|
11
|
+
"gateway": null,
|
12
|
+
"id": 450789469,
|
13
|
+
"landing_site": null,
|
14
|
+
"note": null,
|
15
|
+
"referring_site": null,
|
16
|
+
"shipping_lines": [
|
17
|
+
{
|
18
|
+
"title": "Free Shipping",
|
19
|
+
"price": "0.00",
|
20
|
+
"code": "Free Shipping",
|
21
|
+
"source": "shopify"
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"source": null,
|
25
|
+
"source_identifier": null,
|
26
|
+
"source_name": "web",
|
27
|
+
"source_url": null,
|
28
|
+
"subtotal_price": "398.00",
|
29
|
+
"taxes_included": false,
|
30
|
+
"token": "2a1ace52255252df566af0faaedfbfa7",
|
31
|
+
"total_discounts": "0.00",
|
32
|
+
"total_line_items_price": "398.00",
|
33
|
+
"total_price": "409.94",
|
34
|
+
"total_tax": "11.94",
|
35
|
+
"total_weight": 400,
|
36
|
+
"updated_at": "2012-10-12T07:05:27-04:00",
|
37
|
+
"line_items": [
|
38
|
+
{
|
39
|
+
"applied_discounts": [
|
40
|
+
|
41
|
+
],
|
42
|
+
"compare_at_price": null,
|
43
|
+
"fulfillment_service": "manual",
|
44
|
+
"gift_card": false,
|
45
|
+
"grams": 200,
|
46
|
+
"id": 49148385,
|
47
|
+
"line_price": "199.00",
|
48
|
+
"price": "199.00",
|
49
|
+
"product_id": 632910392,
|
50
|
+
"properties": null,
|
51
|
+
"quantity": 1,
|
52
|
+
"requires_shipping": true,
|
53
|
+
"sku": "IPOD2008RED",
|
54
|
+
"tax_lines": [
|
55
|
+
|
56
|
+
],
|
57
|
+
"taxable": true,
|
58
|
+
"title": "IPod Nano - 8GB",
|
59
|
+
"variant_id": 49148385,
|
60
|
+
"variant_title": "Red",
|
61
|
+
"vendor": "Apple"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"applied_discounts": [
|
65
|
+
|
66
|
+
],
|
67
|
+
"compare_at_price": null,
|
68
|
+
"fulfillment_service": "manual",
|
69
|
+
"gift_card": false,
|
70
|
+
"grams": 200,
|
71
|
+
"id": 808950810,
|
72
|
+
"line_price": "199.00",
|
73
|
+
"price": "199.00",
|
74
|
+
"product_id": 632910392,
|
75
|
+
"properties": null,
|
76
|
+
"quantity": 1,
|
77
|
+
"requires_shipping": true,
|
78
|
+
"sku": "IPOD2008PINK",
|
79
|
+
"tax_lines": [
|
80
|
+
|
81
|
+
],
|
82
|
+
"taxable": true,
|
83
|
+
"title": "IPod Nano - 8GB",
|
84
|
+
"variant_id": 808950810,
|
85
|
+
"variant_title": "Pink",
|
86
|
+
"vendor": "Apple"
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"name": "#450789469",
|
90
|
+
"note_attributes": [
|
91
|
+
{
|
92
|
+
"name": "custom engraving",
|
93
|
+
"value": "Happy Birthday"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"name": "colour",
|
97
|
+
"value": "green"
|
98
|
+
}
|
99
|
+
],
|
100
|
+
"discount_codes": [
|
101
|
+
{
|
102
|
+
"code": "TENOFF",
|
103
|
+
"amount": "10.00"
|
104
|
+
}
|
105
|
+
],
|
106
|
+
"abandoned_checkout_url": "https://checkout.local/orders/690933842/2a1ace52255252df566af0faaedfbfa7?recovered=1",
|
107
|
+
"tax_lines": [
|
108
|
+
{
|
109
|
+
"price": "11.94",
|
110
|
+
"rate": 0.06,
|
111
|
+
"title": "State Tax"
|
112
|
+
}
|
113
|
+
],
|
114
|
+
"billing_address": {
|
115
|
+
"address1": "Chestnut Street 92",
|
116
|
+
"address2": "",
|
117
|
+
"city": "Louisville",
|
118
|
+
"company": null,
|
119
|
+
"country": "United States",
|
120
|
+
"first_name": "Bob",
|
121
|
+
"last_name": "Norman",
|
122
|
+
"latitude": "45.41634",
|
123
|
+
"longitude": "-75.6868",
|
124
|
+
"phone": "555-625-1199",
|
125
|
+
"province": "Kentucky",
|
126
|
+
"zip": "40202",
|
127
|
+
"name": "Bob Norman",
|
128
|
+
"country_code": "US",
|
129
|
+
"province_code": "KY"
|
130
|
+
},
|
131
|
+
"shipping_address": {
|
132
|
+
"address1": "Chestnut Street 92",
|
133
|
+
"address2": "",
|
134
|
+
"city": "Louisville",
|
135
|
+
"company": null,
|
136
|
+
"country": "United States",
|
137
|
+
"first_name": "Bob",
|
138
|
+
"last_name": "Norman",
|
139
|
+
"latitude": "45.41634",
|
140
|
+
"longitude": "-75.6868",
|
141
|
+
"phone": "555-625-1199",
|
142
|
+
"province": "Kentucky",
|
143
|
+
"zip": "40202",
|
144
|
+
"name": "Bob Norman",
|
145
|
+
"country_code": "US",
|
146
|
+
"province_code": "KY"
|
147
|
+
},
|
148
|
+
"customer": {
|
149
|
+
"accepts_marketing": false,
|
150
|
+
"created_at": "2014-03-07T16:12:37-05:00",
|
151
|
+
"email": "bob.norman@hostmail.com",
|
152
|
+
"first_name": "Bob",
|
153
|
+
"id": 207119551,
|
154
|
+
"last_name": "Norman",
|
155
|
+
"last_order_id": null,
|
156
|
+
"multipass_identifier": null,
|
157
|
+
"note": null,
|
158
|
+
"orders_count": 0,
|
159
|
+
"state": "disabled",
|
160
|
+
"total_spent": "0.00",
|
161
|
+
"updated_at": "2014-03-07T16:12:37-05:00",
|
162
|
+
"verified_email": true,
|
163
|
+
"tags": "",
|
164
|
+
"last_order_name": null,
|
165
|
+
"default_address": {
|
166
|
+
"address1": "Chestnut Street 92",
|
167
|
+
"address2": "",
|
168
|
+
"city": "Louisville",
|
169
|
+
"company": null,
|
170
|
+
"country": "United States",
|
171
|
+
"first_name": null,
|
172
|
+
"id": 207119551,
|
173
|
+
"last_name": null,
|
174
|
+
"phone": "555-625-1199",
|
175
|
+
"province": "Kentucky",
|
176
|
+
"zip": "40202",
|
177
|
+
"name": null,
|
178
|
+
"province_code": "KY",
|
179
|
+
"country_code": "US",
|
180
|
+
"country_name": "United States",
|
181
|
+
"default": true
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
]
|
186
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"handle": "2019-01",
|
4
|
+
"display_name": "2019-01",
|
5
|
+
"supported": true,
|
6
|
+
"latest_supported": false
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"handle": "2019-04",
|
10
|
+
"latest_supported": false,
|
11
|
+
"display_name": "2019-04",
|
12
|
+
"supported": true
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"handle": "2019-07",
|
16
|
+
"latest_supported": false,
|
17
|
+
"display_name": "2019-07",
|
18
|
+
"supported": true
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"handle": "2019-10",
|
22
|
+
"latest_supported": false,
|
23
|
+
"display_name": "2019-10",
|
24
|
+
"supported": true
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"handle": "2020-01",
|
28
|
+
"latest_supported": true,
|
29
|
+
"display_name": "2020-01 (Latest)",
|
30
|
+
"supported": true
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"handle": "unstable",
|
34
|
+
"latest_supported": false,
|
35
|
+
"display_name": "unstable",
|
36
|
+
"supported": false
|
37
|
+
}
|
38
|
+
]
|
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"apis": [{
|
3
|
+
"handle": "admin",
|
4
|
+
"versions": [{
|
5
|
+
"handle": "2019-01",
|
6
|
+
"display_name": "2019-01",
|
7
|
+
"supported": true,
|
8
|
+
"latest_supported": false
|
9
|
+
},{
|
10
|
+
"handle": "2019-04",
|
11
|
+
"latest_supported": false,
|
12
|
+
"display_name": "2019-04",
|
13
|
+
"supported": true
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"handle": "2019-07",
|
17
|
+
"latest_supported": false,
|
18
|
+
"display_name": "2019-07",
|
19
|
+
"supported": true
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"handle": "2019-10",
|
23
|
+
"latest_supported": false,
|
24
|
+
"display_name": "2019-10",
|
25
|
+
"supported": true
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"handle": "2020-01",
|
29
|
+
"latest_supported": true,
|
30
|
+
"display_name": "2020-01 (Latest)",
|
31
|
+
"supported": true
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"handle": "unstable",
|
35
|
+
"latest_supported": false,
|
36
|
+
"display_name": "unstable",
|
37
|
+
"supported": false
|
38
|
+
}
|
39
|
+
]
|
40
|
+
}
|
41
|
+
]
|
42
|
+
}
|