shopify_graphql 2.4.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5038269045bca2f01a4e7d1861ce592c3a862a58d3369a2ca69e8dc5b7beb0d8
4
- data.tar.gz: 477823c3f50646817ac472f5ff4fe71bfb287078b75101fd6c8d6a669e6bb0b0
3
+ metadata.gz: 9396a193dad0b344cca715ca90a406bc2dc53d49b4e806c9f8ba3b3469f83262
4
+ data.tar.gz: 77ebbd5224182e0b5c1410317dc20aff62e69485848012e7d45df3ea8a846cb9
5
5
  SHA512:
6
- metadata.gz: cff7fe23d0a706dc8bf49ccba92e8ee2b75caa6eaff3f69ede31a6bf95b37e96e8d60aa43f5c69867810019bf88671c8cf36c795f03254dc450a04faf783e023
7
- data.tar.gz: 56bdd0133ec23c3b447d76375e6bcc9628f5db8b0217da885cf719047f521a0d456015bac41e9406de7115f2d6e33fd954bae89d807110445334a0f31ca36194
6
+ metadata.gz: 0ad3c88dfd11e4fab39a69d84eb62e528b1f3bfe0c78efc4668c736bdec50055efbf091f2cc275ddf80c8f955b05aaf20d380a985c53937683d098559b9f197c
7
+ data.tar.gz: 2c91862377bb92d01fe6b00460ca14716cc334d5df0d88a5eecbaeefbcce9fa0a61053a1daa259d9bb70f73b821ba134623e01ca9cabe5f3a93d8d92224d77cf
@@ -110,6 +110,8 @@ module ShopifyGraphql
110
110
  TooManyRequests.new(response: response)
111
111
  when "INTERNAL_SERVER_ERROR"
112
112
  ServerError.new(response: response)
113
+ when "SHOP_PENDING_TERMINATION"
114
+ ShopPendingTermination.new(response: response)
113
115
  else
114
116
  ConnectionError.new(response: response)
115
117
  end
@@ -65,6 +65,10 @@ module ShopifyGraphql
65
65
  class ShopLocked < ClientError # :nodoc:
66
66
  end
67
67
 
68
+ # GraphQL SHOP_PENDING_TERMINATION error code (shop is under review)
69
+ class ShopPendingTermination < ClientError # :nodoc:
70
+ end
71
+
68
72
  # 429 Too Many Requests
69
73
  class TooManyRequests < ClientError # :nodoc:
70
74
  end
@@ -1,3 +1,3 @@
1
1
  module ShopifyGraphql
2
- VERSION = "2.4.0"
2
+ VERSION = "2.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify_graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Platonov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-22 00:00:00.000000000 Z
11
+ date: 2026-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails