stigg-api-client 5.53.0 → 5.57.7

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: 64166d759e134cbbce2977d8c768b5e4cd6e736249b5f0246f051b48056a1840
4
+ data.tar.gz: c5276afec19a5c8a632fa4e76462f68a03f6828a81bd65b254af91cb8a076669
5
5
  SHA512:
6
- metadata.gz: db952c47618186569ea2e05199d273fc39c7185c840b5d7f28183aad0dcab31222736289faffaf8272700dc40a3f05785b0866a505d83143caced74d9b28a832
7
- data.tar.gz: ce887711c20b6ffb3dc2e22febe308a96bc6fbc5a34d91241b712f13818338333a7f4d6ed33bddc7c60d45231cbb66848a9ecca5410942a498ecb293b836c19f
6
+ metadata.gz: 44498dcd5c2b0ee7d0987c8cfaff9420a8222c431d1dd833afaddc3498f16135dbf8dce6ba607abca7480522c0576a2f4031d81b42fc8674fa87b6119350c07e
7
+ data.tar.gz: ec9a115270cdf0fa84abe438079502c100434b710561bc7d8fd1cd38013f6844478d8860276f98901aadf6003f4b849a0810b1b2ee4ff35ca30844d7c0a0695a
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.57.7)
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
@@ -2427,6 +2451,7 @@ module Stigg
2427
2451
  GetEntitlementsState = <<~GRAPHQL
2428
2452
  query GetEntitlementsState($query: FetchEntitlementsQuery!) {
2429
2453
  entitlementsState(query: $query) {
2454
+ __typename
2430
2455
  entitlements {
2431
2456
  ...EntitlementFragment
2432
2457
  }
@@ -2622,6 +2647,15 @@ module Stigg
2622
2647
  #{Fragment::SlimCustomCurrencyFragment}
2623
2648
  GRAPHQL
2624
2649
 
2650
+ GetAutomaticRechargeConfiguration = <<~GRAPHQL
2651
+ query GetAutomaticRechargeConfiguration($input: GetAutoRechargeSettingsInput!) {
2652
+ getAutoRechargeSettings(input: $input) {
2653
+ ...AutoRechargeSettingsFragment
2654
+ }
2655
+ }
2656
+ #{Fragment::AutoRechargeSettingsFragment}
2657
+ GRAPHQL
2658
+
2625
2659
  OnEntitlementsUpdated = <<~GRAPHQL
2626
2660
  subscription OnEntitlementsUpdated {
2627
2661
  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.57.7"
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.57.7
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-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient