stigg-api-client 3.97.0 → 3.98.1

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: e03fd22f0a080bb71d715fb085a3ffef09a9a583d9735fc4e538e7998fceed38
4
- data.tar.gz: d0be0f36facabd4c292e2c12afa219ae03d71cfe8956d64ea7a24a5c24d77693
3
+ metadata.gz: f5853a0b2f45e8dc10681d567d993dbc5bdf249d3fabdec5ded7bd76ff18356b
4
+ data.tar.gz: b9fb575a3141ba1bef8456d4588a6d89e2f0bd239a3ffa52f02f6aa7a34206f8
5
5
  SHA512:
6
- metadata.gz: 272a98b2f8c17b2bb5a79e1fe27fcac0c6915e4cd435dbd2b12b382cff8db4ba926c184438e280058f38d6e0c903c7fbc97ac07c962a2c8d48008e171e062c35
7
- data.tar.gz: 01d8bf3b2edeee9476e43ce32886cf7d7f1ef3df9614198970bbd559b6e8d82b7b2e1623bf360d2eaace3c1be1e071a5269bb43c6220547c9f2007c1b4df94f4
6
+ metadata.gz: 5907a403613c8a4206ac1078d8f2509b99ca30f3f6632213e00af50434d361846c514b18caa5ff14efe96c8d4bd8aebc44607d5fa16f1668c325c3267cd1ed65
7
+ data.tar.gz: 18435149415b06657bcadb11496b43c112bac2b7c6441e8cc044ef5e69107ecf35593de2867989f79c5f45dc21f8d1c640785f8b26a9a9370b4c42617e866bf1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (3.97.0)
4
+ stigg-api-client (3.98.1)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -1772,6 +1772,17 @@ module Stigg
1772
1772
  }
1773
1773
  GRAPHQL
1774
1774
 
1775
+ SlimCustomCurrencyFragment = <<~GRAPHQL
1776
+ fragment SlimCustomCurrencyFragment on SlimCustomCurrency {
1777
+ currencyId
1778
+ displayName
1779
+ units {
1780
+ singular
1781
+ plural
1782
+ }
1783
+ }
1784
+ GRAPHQL
1785
+
1775
1786
  CreditUsageFragment = <<~GRAPHQL
1776
1787
  fragment CreditUsageFragment on CreditUsage {
1777
1788
  series {
@@ -1783,6 +1794,9 @@ module Stigg
1783
1794
  value
1784
1795
  }
1785
1796
  }
1797
+ currency {
1798
+ ...SlimCustomCurrencyFragment
1799
+ }
1786
1800
  }
1787
1801
  GRAPHQL
1788
1802
  end
@@ -2538,6 +2552,7 @@ module Stigg
2538
2552
  }
2539
2553
  }
2540
2554
  #{Fragment::CreditUsageFragment}
2555
+ #{Fragment::SlimCustomCurrencyFragment}
2541
2556
  GRAPHQL
2542
2557
 
2543
2558
  OnEntitlementsUpdated = <<~GRAPHQL
@@ -12789,6 +12789,18 @@
12789
12789
  "name": "CreditUsage",
12790
12790
  "description": "Credits usage",
12791
12791
  "fields": [
12792
+ {
12793
+ "name": "currency",
12794
+ "description": "Stigg custom currency object with minimal fields",
12795
+ "args": [],
12796
+ "type": {
12797
+ "kind": "OBJECT",
12798
+ "name": "SlimCustomCurrency",
12799
+ "ofType": null
12800
+ },
12801
+ "isDeprecated": false,
12802
+ "deprecationReason": null
12803
+ },
12792
12804
  {
12793
12805
  "name": "series",
12794
12806
  "description": "Series of credit usage data points",
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.97.0"
4
+ VERSION = "3.98.1"
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.97.0
4
+ version: 3.98.1
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-22 00:00:00.000000000 Z
11
+ date: 2025-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient