stigg-api-client 5.53.0 → 5.56.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: 78df05bbe7bf12b4d899b8560d8137c29b509709a1de1fe918c8d73d7c5837af
4
- data.tar.gz: bc5166adca81b377fcda2db2359e8ffbde84a74410d84b2f7794678fd14d8185
3
+ metadata.gz: 11fe4df1a833b47529c9faa2bd8966a74bac4025b43c76aadae48ba061793b70
4
+ data.tar.gz: f501abda96de1abcc90d91df5d7b53fee6b8a081cffb1de877b4d2985a427c44
5
5
  SHA512:
6
- metadata.gz: db952c47618186569ea2e05199d273fc39c7185c840b5d7f28183aad0dcab31222736289faffaf8272700dc40a3f05785b0866a505d83143caced74d9b28a832
7
- data.tar.gz: ce887711c20b6ffb3dc2e22febe308a96bc6fbc5a34d91241b712f13818338333a7f4d6ed33bddc7c60d45231cbb66848a9ecca5410942a498ecb293b836c19f
6
+ metadata.gz: 6c35dc8cf11943c78dc84c61de0f5cac2f06cb68ed98316cca91fa9f38d64a912f10cd79e9291288ef80a7a0178a05eb949f6489ca3f57cd45dd7e9c7c14f49b
7
+ data.tar.gz: b68c7ec8076041a70073d475026a7be8911152bb4c0b5f4893c3b75d6346238e55e956d00e96f417b42a65c18e7387a5b902f00cab86ce64c1053bd8e59715f6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (5.53.0)
4
+ stigg-api-client (5.56.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -1843,6 +1843,21 @@ module Stigg
1843
1843
  }
1844
1844
  }
1845
1845
  GRAPHQL
1846
+
1847
+ AutoRechargeSettingsFragment = <<~GRAPHQL
1848
+ fragment AutoRechargeSettingsFragment on AutoRechargeSettingsDTO {
1849
+ customerId
1850
+ currencyId
1851
+ isEnabled
1852
+ thresholdType
1853
+ thresholdValue
1854
+ targetBalance
1855
+ maxSpendLimit
1856
+ grantExpirationPeriod
1857
+ createdAt
1858
+ updatedAt
1859
+ }
1860
+ GRAPHQL
1846
1861
  end
1847
1862
 
1848
1863
  module Mutation
@@ -2240,6 +2255,15 @@ module Stigg
2240
2255
  }
2241
2256
  #{Fragment::CouponFragment}
2242
2257
  GRAPHQL
2258
+
2259
+ SaveAutomaticRechargeConfiguration = <<~GRAPHQL
2260
+ mutation SaveAutomaticRechargeConfiguration($input: SaveAutoRechargeSettingsInput!) {
2261
+ saveAutoRechargeSettings(input: $input) {
2262
+ ...AutoRechargeSettingsFragment
2263
+ }
2264
+ }
2265
+ #{Fragment::AutoRechargeSettingsFragment}
2266
+ GRAPHQL
2243
2267
  end
2244
2268
 
2245
2269
  module Query
@@ -2622,6 +2646,15 @@ module Stigg
2622
2646
  #{Fragment::SlimCustomCurrencyFragment}
2623
2647
  GRAPHQL
2624
2648
 
2649
+ GetAutomaticRechargeConfiguration = <<~GRAPHQL
2650
+ query GetAutomaticRechargeConfiguration($input: GetAutoRechargeSettingsInput!) {
2651
+ getAutoRechargeSettings(input: $input) {
2652
+ ...AutoRechargeSettingsFragment
2653
+ }
2654
+ }
2655
+ #{Fragment::AutoRechargeSettingsFragment}
2656
+ GRAPHQL
2657
+
2625
2658
  OnEntitlementsUpdated = <<~GRAPHQL
2626
2659
  subscription OnEntitlementsUpdated {
2627
2660
  entitlementsUpdated {
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "5.53.0"
4
+ VERSION = "5.56.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stigg-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.53.0
4
+ version: 5.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-11-27 00:00:00.000000000 Z
11
+ date: 2025-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient