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
metadata
ADDED
@@ -0,0 +1,555 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby_shopify_api
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Hopper Gee
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-03-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activeresource
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.1.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rack
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: graphql-client
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: mocha
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.4.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.4.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: webmock
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: minitest
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '5.14'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '5.14'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rake
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: timecop
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop-shopify
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: pry
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: pry-byebug
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
description: |
|
168
|
+
The Shopify API gem allows Ruby developers to programmatically access the admin
|
169
|
+
section of Shopify stores. The API is implemented as JSON or XML over HTTP using
|
170
|
+
all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or
|
171
|
+
Collection, has its own URL and is manipulated in isolation.
|
172
|
+
email:
|
173
|
+
- hopper.gee@hey.com
|
174
|
+
executables: []
|
175
|
+
extensions: []
|
176
|
+
extra_rdoc_files:
|
177
|
+
- LICENSE
|
178
|
+
- README.md
|
179
|
+
files:
|
180
|
+
- ".document"
|
181
|
+
- ".github/CODEOWNERS"
|
182
|
+
- ".github/ISSUE_TEMPLATE.md"
|
183
|
+
- ".github/probots.yml"
|
184
|
+
- ".github/workflows/build.yml"
|
185
|
+
- ".gitignore"
|
186
|
+
- ".rubocop.yml"
|
187
|
+
- ".rubocop_todo.yml"
|
188
|
+
- CHANGELOG-OLD.md
|
189
|
+
- CHANGELOG.md
|
190
|
+
- CONTRIBUTING.md
|
191
|
+
- CONTRIBUTORS
|
192
|
+
- Gemfile
|
193
|
+
- Gemfile.lock
|
194
|
+
- Gemfile_ar41
|
195
|
+
- Gemfile_ar50
|
196
|
+
- Gemfile_ar51
|
197
|
+
- Gemfile_ar60
|
198
|
+
- Gemfile_ar_main
|
199
|
+
- LICENSE
|
200
|
+
- README.md
|
201
|
+
- RELEASING
|
202
|
+
- Rakefile
|
203
|
+
- SECURITY.md
|
204
|
+
- dev.yml
|
205
|
+
- docker-compose.yml
|
206
|
+
- docs/_config.yml
|
207
|
+
- docs/_includes/footer.html
|
208
|
+
- docs/_includes/head.html
|
209
|
+
- docs/_layouts/index.html
|
210
|
+
- docs/graphql.md
|
211
|
+
- docs/index.md
|
212
|
+
- lib/active_resource/connection_ext.rb
|
213
|
+
- lib/active_resource/detailed_log_subscriber.rb
|
214
|
+
- lib/active_resource/json_errors.rb
|
215
|
+
- lib/shopify_api.rb
|
216
|
+
- lib/shopify_api/api_access.rb
|
217
|
+
- lib/shopify_api/api_version.rb
|
218
|
+
- lib/shopify_api/connection.rb
|
219
|
+
- lib/shopify_api/countable.rb
|
220
|
+
- lib/shopify_api/disable_prefix_check.rb
|
221
|
+
- lib/shopify_api/events.rb
|
222
|
+
- lib/shopify_api/graphql.rb
|
223
|
+
- lib/shopify_api/graphql/http_client.rb
|
224
|
+
- lib/shopify_api/graphql/railtie.rb
|
225
|
+
- lib/shopify_api/graphql/task.rake
|
226
|
+
- lib/shopify_api/hmac_params.rb
|
227
|
+
- lib/shopify_api/limits.rb
|
228
|
+
- lib/shopify_api/message_enricher.rb
|
229
|
+
- lib/shopify_api/meta.rb
|
230
|
+
- lib/shopify_api/metafields.rb
|
231
|
+
- lib/shopify_api/paginated_collection.rb
|
232
|
+
- lib/shopify_api/pagination_link_headers.rb
|
233
|
+
- lib/shopify_api/resources.rb
|
234
|
+
- lib/shopify_api/resources/abandoned_checkout.rb
|
235
|
+
- lib/shopify_api/resources/access_scope.rb
|
236
|
+
- lib/shopify_api/resources/access_token.rb
|
237
|
+
- lib/shopify_api/resources/address.rb
|
238
|
+
- lib/shopify_api/resources/announcement.rb
|
239
|
+
- lib/shopify_api/resources/api_permission.rb
|
240
|
+
- lib/shopify_api/resources/application_charge.rb
|
241
|
+
- lib/shopify_api/resources/application_credit.rb
|
242
|
+
- lib/shopify_api/resources/array_base.rb
|
243
|
+
- lib/shopify_api/resources/article.rb
|
244
|
+
- lib/shopify_api/resources/asset.rb
|
245
|
+
- lib/shopify_api/resources/assigned_fulfillment_order.rb
|
246
|
+
- lib/shopify_api/resources/base.rb
|
247
|
+
- lib/shopify_api/resources/billing_address.rb
|
248
|
+
- lib/shopify_api/resources/blog.rb
|
249
|
+
- lib/shopify_api/resources/carrier_service.rb
|
250
|
+
- lib/shopify_api/resources/cart.rb
|
251
|
+
- lib/shopify_api/resources/checkout.rb
|
252
|
+
- lib/shopify_api/resources/collect.rb
|
253
|
+
- lib/shopify_api/resources/collection.rb
|
254
|
+
- lib/shopify_api/resources/collection_listing.rb
|
255
|
+
- lib/shopify_api/resources/collection_publication.rb
|
256
|
+
- lib/shopify_api/resources/comment.rb
|
257
|
+
- lib/shopify_api/resources/country.rb
|
258
|
+
- lib/shopify_api/resources/currency.rb
|
259
|
+
- lib/shopify_api/resources/custom_collection.rb
|
260
|
+
- lib/shopify_api/resources/customer.rb
|
261
|
+
- lib/shopify_api/resources/customer_group.rb
|
262
|
+
- lib/shopify_api/resources/customer_invite.rb
|
263
|
+
- lib/shopify_api/resources/customer_saved_search.rb
|
264
|
+
- lib/shopify_api/resources/discount_code.rb
|
265
|
+
- lib/shopify_api/resources/discount_code_batch.rb
|
266
|
+
- lib/shopify_api/resources/draft_order.rb
|
267
|
+
- lib/shopify_api/resources/draft_order_invoice.rb
|
268
|
+
- lib/shopify_api/resources/event.rb
|
269
|
+
- lib/shopify_api/resources/fulfillment.rb
|
270
|
+
- lib/shopify_api/resources/fulfillment_event.rb
|
271
|
+
- lib/shopify_api/resources/fulfillment_order.rb
|
272
|
+
- lib/shopify_api/resources/fulfillment_order_locations_for_move.rb
|
273
|
+
- lib/shopify_api/resources/fulfillment_request.rb
|
274
|
+
- lib/shopify_api/resources/fulfillment_service.rb
|
275
|
+
- lib/shopify_api/resources/fulfillment_v2.rb
|
276
|
+
- lib/shopify_api/resources/gift_card.rb
|
277
|
+
- lib/shopify_api/resources/image.rb
|
278
|
+
- lib/shopify_api/resources/inventory_item.rb
|
279
|
+
- lib/shopify_api/resources/inventory_level.rb
|
280
|
+
- lib/shopify_api/resources/line_item.rb
|
281
|
+
- lib/shopify_api/resources/location.rb
|
282
|
+
- lib/shopify_api/resources/marketing_event.rb
|
283
|
+
- lib/shopify_api/resources/metafield.rb
|
284
|
+
- lib/shopify_api/resources/note_attribute.rb
|
285
|
+
- lib/shopify_api/resources/option.rb
|
286
|
+
- lib/shopify_api/resources/order.rb
|
287
|
+
- lib/shopify_api/resources/order_risk.rb
|
288
|
+
- lib/shopify_api/resources/page.rb
|
289
|
+
- lib/shopify_api/resources/payment.rb
|
290
|
+
- lib/shopify_api/resources/payment_details.rb
|
291
|
+
- lib/shopify_api/resources/ping.rb
|
292
|
+
- lib/shopify_api/resources/policy.rb
|
293
|
+
- lib/shopify_api/resources/price_rule.rb
|
294
|
+
- lib/shopify_api/resources/product.rb
|
295
|
+
- lib/shopify_api/resources/product_listing.rb
|
296
|
+
- lib/shopify_api/resources/product_publication.rb
|
297
|
+
- lib/shopify_api/resources/province.rb
|
298
|
+
- lib/shopify_api/resources/publication.rb
|
299
|
+
- lib/shopify_api/resources/receipt.rb
|
300
|
+
- lib/shopify_api/resources/recurring_application_charge.rb
|
301
|
+
- lib/shopify_api/resources/redirect.rb
|
302
|
+
- lib/shopify_api/resources/refund.rb
|
303
|
+
- lib/shopify_api/resources/report.rb
|
304
|
+
- lib/shopify_api/resources/resource_feedback.rb
|
305
|
+
- lib/shopify_api/resources/rule.rb
|
306
|
+
- lib/shopify_api/resources/script_tag.rb
|
307
|
+
- lib/shopify_api/resources/shipping_address.rb
|
308
|
+
- lib/shopify_api/resources/shipping_line.rb
|
309
|
+
- lib/shopify_api/resources/shipping_rate.rb
|
310
|
+
- lib/shopify_api/resources/shipping_zone.rb
|
311
|
+
- lib/shopify_api/resources/shop.rb
|
312
|
+
- lib/shopify_api/resources/smart_collection.rb
|
313
|
+
- lib/shopify_api/resources/storefront_access_token.rb
|
314
|
+
- lib/shopify_api/resources/tax_line.rb
|
315
|
+
- lib/shopify_api/resources/tax_service.rb
|
316
|
+
- lib/shopify_api/resources/tender_transaction.rb
|
317
|
+
- lib/shopify_api/resources/theme.rb
|
318
|
+
- lib/shopify_api/resources/transaction.rb
|
319
|
+
- lib/shopify_api/resources/usage_charge.rb
|
320
|
+
- lib/shopify_api/resources/user.rb
|
321
|
+
- lib/shopify_api/resources/variant.rb
|
322
|
+
- lib/shopify_api/resources/webhook.rb
|
323
|
+
- lib/shopify_api/session.rb
|
324
|
+
- lib/shopify_api/version.rb
|
325
|
+
- lib/verify_docs.rb
|
326
|
+
- service.yml
|
327
|
+
- shipit.rubygems.yml
|
328
|
+
- shopify_api.gemspec
|
329
|
+
- test/abandoned_checkouts_test.rb
|
330
|
+
- test/access_scope_test.rb
|
331
|
+
- test/access_token_test.rb
|
332
|
+
- test/active_resource/json_errors_test.rb
|
333
|
+
- test/api_access_test.rb
|
334
|
+
- test/api_permission_test.rb
|
335
|
+
- test/api_version_test.rb
|
336
|
+
- test/application_charge_test.rb
|
337
|
+
- test/application_credit_test.rb
|
338
|
+
- test/article_test.rb
|
339
|
+
- test/asset_test.rb
|
340
|
+
- test/assigned_fulfillment_order_test.rb
|
341
|
+
- test/base_test.rb
|
342
|
+
- test/blog_test.rb
|
343
|
+
- test/carrier_service_test.rb
|
344
|
+
- test/cart_test.rb
|
345
|
+
- test/checkouts_test.rb
|
346
|
+
- test/collect_test.rb
|
347
|
+
- test/collection_listing_test.rb
|
348
|
+
- test/collection_publication_test.rb
|
349
|
+
- test/collection_test.rb
|
350
|
+
- test/countable_test.rb
|
351
|
+
- test/currency_test.rb
|
352
|
+
- test/custom_collection_test.rb
|
353
|
+
- test/customer_saved_search_test.rb
|
354
|
+
- test/customer_test.rb
|
355
|
+
- test/detailed_log_subscriber_test.rb
|
356
|
+
- test/discount_code_batch_test.rb
|
357
|
+
- test/discount_code_test.rb
|
358
|
+
- test/draft_order_test.rb
|
359
|
+
- test/fixtures/abandoned_checkout.json
|
360
|
+
- test/fixtures/abandoned_checkouts.json
|
361
|
+
- test/fixtures/access_scopes.json
|
362
|
+
- test/fixtures/access_token_delegate.json
|
363
|
+
- test/fixtures/api_versions.json
|
364
|
+
- test/fixtures/apis.json
|
365
|
+
- test/fixtures/application_charge.json
|
366
|
+
- test/fixtures/application_charges.json
|
367
|
+
- test/fixtures/application_credit.json
|
368
|
+
- test/fixtures/application_credits.json
|
369
|
+
- test/fixtures/article.json
|
370
|
+
- test/fixtures/articles.json
|
371
|
+
- test/fixtures/asset.json
|
372
|
+
- test/fixtures/assets.json
|
373
|
+
- test/fixtures/assigned_fulfillment_orders.json
|
374
|
+
- test/fixtures/authors.json
|
375
|
+
- test/fixtures/blog.json
|
376
|
+
- test/fixtures/blogs.json
|
377
|
+
- test/fixtures/carrier_service.json
|
378
|
+
- test/fixtures/carts.json
|
379
|
+
- test/fixtures/checkout.json
|
380
|
+
- test/fixtures/checkouts.json
|
381
|
+
- test/fixtures/collect.json
|
382
|
+
- test/fixtures/collection.json
|
383
|
+
- test/fixtures/collection_listing.json
|
384
|
+
- test/fixtures/collection_listing_product_ids.json
|
385
|
+
- test/fixtures/collection_listing_product_ids2.json
|
386
|
+
- test/fixtures/collection_listings.json
|
387
|
+
- test/fixtures/collection_products.json
|
388
|
+
- test/fixtures/collection_publication.json
|
389
|
+
- test/fixtures/collection_publications.json
|
390
|
+
- test/fixtures/currencies.json
|
391
|
+
- test/fixtures/custom_collection.json
|
392
|
+
- test/fixtures/customer_invite.json
|
393
|
+
- test/fixtures/customer_saved_search.json
|
394
|
+
- test/fixtures/customer_saved_search_customers.json
|
395
|
+
- test/fixtures/customers.json
|
396
|
+
- test/fixtures/customers_account_activation_url.json
|
397
|
+
- test/fixtures/customers_search.json
|
398
|
+
- test/fixtures/discount_code.json
|
399
|
+
- test/fixtures/discount_code_batch.json
|
400
|
+
- test/fixtures/discount_code_batch_discount_codes.json
|
401
|
+
- test/fixtures/discount_codes.json
|
402
|
+
- test/fixtures/draft_order.json
|
403
|
+
- test/fixtures/draft_order_completed.json
|
404
|
+
- test/fixtures/draft_order_invoice.json
|
405
|
+
- test/fixtures/draft_orders.json
|
406
|
+
- test/fixtures/engagement.json
|
407
|
+
- test/fixtures/events.json
|
408
|
+
- test/fixtures/fulfillment.json
|
409
|
+
- test/fixtures/fulfillment_event.json
|
410
|
+
- test/fixtures/fulfillment_order.json
|
411
|
+
- test/fixtures/fulfillment_order_locations_for_move.json
|
412
|
+
- test/fixtures/fulfillment_orders.json
|
413
|
+
- test/fixtures/fulfillment_request.json
|
414
|
+
- test/fixtures/fulfillment_service.json
|
415
|
+
- test/fixtures/fulfillments.json
|
416
|
+
- test/fixtures/gift_card.json
|
417
|
+
- test/fixtures/gift_card_disabled.json
|
418
|
+
- test/fixtures/graphql/2019-10.json
|
419
|
+
- test/fixtures/graphql/dummy_schema.rb
|
420
|
+
- test/fixtures/graphql/unstable.json
|
421
|
+
- test/fixtures/image.json
|
422
|
+
- test/fixtures/images.json
|
423
|
+
- test/fixtures/inventory_level.json
|
424
|
+
- test/fixtures/inventory_levels.json
|
425
|
+
- test/fixtures/marketing_event.json
|
426
|
+
- test/fixtures/marketing_events.json
|
427
|
+
- test/fixtures/metafield.json
|
428
|
+
- test/fixtures/metafields.json
|
429
|
+
- test/fixtures/order.json
|
430
|
+
- test/fixtures/order_risk.json
|
431
|
+
- test/fixtures/order_risks.json
|
432
|
+
- test/fixtures/order_with_properties.json
|
433
|
+
- test/fixtures/orders.json
|
434
|
+
- test/fixtures/payment.json
|
435
|
+
- test/fixtures/payments.json
|
436
|
+
- test/fixtures/ping/conversation.json
|
437
|
+
- test/fixtures/ping/failed_delivery_confirmation.json
|
438
|
+
- test/fixtures/ping/message.json
|
439
|
+
- test/fixtures/ping/successful_delivery_confirmation.json
|
440
|
+
- test/fixtures/policies.json
|
441
|
+
- test/fixtures/price_rule.json
|
442
|
+
- test/fixtures/price_rules.json
|
443
|
+
- test/fixtures/product.json
|
444
|
+
- test/fixtures/product_listing.json
|
445
|
+
- test/fixtures/product_listing_product_ids.json
|
446
|
+
- test/fixtures/product_listing_product_ids2.json
|
447
|
+
- test/fixtures/product_listings.json
|
448
|
+
- test/fixtures/product_publication.json
|
449
|
+
- test/fixtures/product_publications.json
|
450
|
+
- test/fixtures/publications.json
|
451
|
+
- test/fixtures/recurring_application_charge.json
|
452
|
+
- test/fixtures/recurring_application_charge_adjustment.json
|
453
|
+
- test/fixtures/recurring_application_charges.json
|
454
|
+
- test/fixtures/redirect.json
|
455
|
+
- test/fixtures/refund.json
|
456
|
+
- test/fixtures/report.json
|
457
|
+
- test/fixtures/reports.json
|
458
|
+
- test/fixtures/script_tag.json
|
459
|
+
- test/fixtures/script_tags.json
|
460
|
+
- test/fixtures/shipping_rates.json
|
461
|
+
- test/fixtures/shipping_zones.json
|
462
|
+
- test/fixtures/shop.json
|
463
|
+
- test/fixtures/smart_collection.json
|
464
|
+
- test/fixtures/smart_collection_products.json
|
465
|
+
- test/fixtures/storefront_access_token.json
|
466
|
+
- test/fixtures/storefront_access_tokens.json
|
467
|
+
- test/fixtures/tags.json
|
468
|
+
- test/fixtures/tax_service.json
|
469
|
+
- test/fixtures/tender_transactions.json
|
470
|
+
- test/fixtures/transaction.json
|
471
|
+
- test/fixtures/usage_charge.json
|
472
|
+
- test/fixtures/usage_charges.json
|
473
|
+
- test/fixtures/user.json
|
474
|
+
- test/fixtures/users.json
|
475
|
+
- test/fixtures/variant.json
|
476
|
+
- test/fixtures/variants.json
|
477
|
+
- test/fixtures/webhook.json
|
478
|
+
- test/fixtures/webhooks.json
|
479
|
+
- test/fulfillment_event_test.rb
|
480
|
+
- test/fulfillment_order_test.rb
|
481
|
+
- test/fulfillment_order_test_helper.rb
|
482
|
+
- test/fulfillment_request_test.rb
|
483
|
+
- test/fulfillment_service_test.rb
|
484
|
+
- test/fulfillment_test.rb
|
485
|
+
- test/fulfillment_v2_test.rb
|
486
|
+
- test/gift_card_test.rb
|
487
|
+
- test/graphql/http_client_test.rb
|
488
|
+
- test/graphql_test.rb
|
489
|
+
- test/hmac_params_test.rb
|
490
|
+
- test/image_test.rb
|
491
|
+
- test/inventory_level_test.rb
|
492
|
+
- test/lib/webmock_extensions/last_request.rb
|
493
|
+
- test/limits_test.rb
|
494
|
+
- test/location_test.rb
|
495
|
+
- test/marketing_event_test.rb
|
496
|
+
- test/message_enricher_test.rb
|
497
|
+
- test/meta_test.rb
|
498
|
+
- test/metafield_test.rb
|
499
|
+
- test/order_risk_test.rb
|
500
|
+
- test/order_test.rb
|
501
|
+
- test/pagination_test.rb
|
502
|
+
- test/payment_test.rb
|
503
|
+
- test/policy_test.rb
|
504
|
+
- test/price_rule_test.rb
|
505
|
+
- test/product_listing_test.rb
|
506
|
+
- test/product_publication_test.rb
|
507
|
+
- test/product_test.rb
|
508
|
+
- test/publication_test.rb
|
509
|
+
- test/recurring_application_charge_test.rb
|
510
|
+
- test/redirect_test.rb
|
511
|
+
- test/refund_test.rb
|
512
|
+
- test/report_test.rb
|
513
|
+
- test/resource_feedback_test.rb
|
514
|
+
- test/script_tag_test.rb
|
515
|
+
- test/session_test.rb
|
516
|
+
- test/shipping_rate_test.rb
|
517
|
+
- test/shipping_zone_test.rb
|
518
|
+
- test/shop_test.rb
|
519
|
+
- test/smart_collection_test.rb
|
520
|
+
- test/storefront_access_token_test.rb
|
521
|
+
- test/tax_service_test.rb
|
522
|
+
- test/tender_transaction_test.rb
|
523
|
+
- test/test_helper.rb
|
524
|
+
- test/transaction_test.rb
|
525
|
+
- test/usage_charge_test.rb
|
526
|
+
- test/user_test.rb
|
527
|
+
- test/variant_test.rb
|
528
|
+
- test/webhook_test.rb
|
529
|
+
homepage: https://github.com/RetroShopifyDev/ruby-shopify-api
|
530
|
+
licenses:
|
531
|
+
- MIT
|
532
|
+
metadata:
|
533
|
+
allowed_push_host: https://rubygems.org
|
534
|
+
post_install_message:
|
535
|
+
rdoc_options:
|
536
|
+
- "--charset=UTF-8"
|
537
|
+
require_paths:
|
538
|
+
- lib
|
539
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
540
|
+
requirements:
|
541
|
+
- - ">="
|
542
|
+
- !ruby/object:Gem::Version
|
543
|
+
version: '2.4'
|
544
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
545
|
+
requirements:
|
546
|
+
- - ">="
|
547
|
+
- !ruby/object:Gem::Version
|
548
|
+
version: '0'
|
549
|
+
requirements: []
|
550
|
+
rubygems_version: 3.1.6
|
551
|
+
signing_key:
|
552
|
+
specification_version: 4
|
553
|
+
summary: ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web
|
554
|
+
services
|
555
|
+
test_files: []
|