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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/stigg/generated/operations.rb +33 -0
- data/lib/stigg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11fe4df1a833b47529c9faa2bd8966a74bac4025b43c76aadae48ba061793b70
|
|
4
|
+
data.tar.gz: f501abda96de1abcc90d91df5d7b53fee6b8a081cffb1de877b4d2985a427c44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c35dc8cf11943c78dc84c61de0f5cac2f06cb68ed98316cca91fa9f38d64a912f10cd79e9291288ef80a7a0178a05eb949f6489ca3f57cd45dd7e9c7c14f49b
|
|
7
|
+
data.tar.gz: b68c7ec8076041a70073d475026a7be8911152bb4c0b5f4893c3b75d6346238e55e956d00e96f417b42a65c18e7387a5b902f00cab86ce64c1053bd8e59715f6
|
data/Gemfile.lock
CHANGED
|
@@ -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
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.
|
|
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-
|
|
11
|
+
date: 2025-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphlient
|