stigg-api-client 3.84.1 → 3.88.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: 5a2560f0e6bcd1f5e94d3353d1c5a55c8a30285cf9b34d730f700be6cd4158fa
4
- data.tar.gz: 3f4989dab7a16878b8ec79bd2be30d661ed1d97278a50b1a2b48bfdc7d87f384
3
+ metadata.gz: 98cdb09c572dea40a12332a17e3d7f6686559c8d913aff068ab86923fa7937fb
4
+ data.tar.gz: 47ce2fe3c7084039ca399f013fa0c955870985c1aa810a3845d80b90e3855d74
5
5
  SHA512:
6
- metadata.gz: 3eda0fd93b581b5c270eeb63d6026cacdb6afa02a876540a236bbb4389646a5cac9a59bb0a8b64cb2ff1d0fea9926cefdd5c6227b3469c809b89eda17f4bcb7f
7
- data.tar.gz: fc7469b1fd8cc0d677028e72dbebe555de397629e4ab1f5f20b2b4989d1e70b5a88d27c804c432a7d38749b0ecdd3fa06a12dc65eb4dbb9a689cd9cc4aaa2f51
6
+ metadata.gz: be2980167a3fd1d24a625e26310a4b8312be02033558d8bf79c24443eb7b7171512066a46e0bd2800a007e8fcf9c713a7688292140c2b8728a6ae5793c49a689
7
+ data.tar.gz: 63c90f17aa5d8eb2e99608287573d1aa5a2158409cd2b4bb7c8dff30a41588c2b57253b322ab13237f1b543662c31a00afce9292d4a85bd3036cf372314270cd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (3.84.1)
4
+ stigg-api-client (3.88.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -1732,6 +1732,20 @@ module Stigg
1732
1732
  }
1733
1733
  GRAPHQL
1734
1734
 
1735
+ CreditLedgerFragment = <<~GRAPHQL
1736
+ fragment CreditLedgerFragment on CreditLedgerEvent {
1737
+ timestamp
1738
+ eventType
1739
+ customerId
1740
+ resourceId
1741
+ eventId
1742
+ featureId
1743
+ amount
1744
+ creditGrantId
1745
+ creditCurrencyId
1746
+ }
1747
+ GRAPHQL
1748
+
1735
1749
  CreditsBalanceSummaryFragment = <<~GRAPHQL
1736
1750
  fragment CreditsBalanceSummaryFragment on CreditBalanceSummary {
1737
1751
  customerId
@@ -2483,6 +2497,17 @@ module Stigg
2483
2497
  #{Fragment::CreditGrantFragment}
2484
2498
  GRAPHQL
2485
2499
 
2500
+ GetCreditLedger = <<~GRAPHQL
2501
+ query GetCreditLedger($input: CreditLedgerInput!) {
2502
+ creditsLedger(input: $input) {
2503
+ events {
2504
+ ...CreditLedgerFragment
2505
+ }
2506
+ }
2507
+ }
2508
+ #{Fragment::CreditLedgerFragment}
2509
+ GRAPHQL
2510
+
2486
2511
  OnEntitlementsUpdated = <<~GRAPHQL
2487
2512
  subscription OnEntitlementsUpdated {
2488
2513
  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 = "3.84.1"
4
+ VERSION = "3.88.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: 3.84.1
4
+ version: 3.88.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-09-16 00:00:00.000000000 Z
11
+ date: 2025-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient