stigg-api-client 3.16.0 → 3.17.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: c2b261a465459120f45158b56dcad8f8ba3e2b08440c62dc8f6c350c1d062336
4
- data.tar.gz: 8130d332faa4fc4d81fa18be09c6fac017bd0f2ae98d00e511a4645db8e5a6f1
3
+ metadata.gz: 006fd33de7d5e97fdbe40ba5525d62575ffd7b1722113edcc10331ac77a6b1e8
4
+ data.tar.gz: 7bf136cc1988d500d79ef374fd46843fdaeb25f3bf130e49c7b0fe75c9e4e415
5
5
  SHA512:
6
- metadata.gz: db8923e9633de79a6830873a08cbaefa30c611bef8af9d29fcfb92b48119d57e5594bb082388df4cd4698a688783cfc7f9931ac370dbb9b53459fc589f85f7fe
7
- data.tar.gz: 844dc6dac9c0828f19931c898c35758dca932273892e94555bdfb8bc7fecda3e3b9190e0ae24f431e63c7e2233a732707aadfc9266b2997f6f633196a154b011
6
+ metadata.gz: 8a24197e28cede086c028c23d1270329d59f0a13b00fc59443f27fad15d2e5e188b9591f1a86ddce097d9d82b2006524077ec492fc7c216bedfa902977fb72bd
7
+ data.tar.gz: 9b27ec5ac37941309c2bbe3f8f5ed149c48cc89a0ff20a9f434a2c4f232f49d60a193120dd97634f0ceb29564f622bf32c678586e68d1f2845115e99aeab41e9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (3.16.0)
4
+ stigg-api-client (3.17.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -11219,9 +11219,25 @@
11219
11219
  },
11220
11220
  {
11221
11221
  "kind": "OBJECT",
11222
- "name": "CreditBalanceDTO",
11222
+ "name": "CreditBalance",
11223
11223
  "description": "Credit balance information for a specific currency",
11224
11224
  "fields": [
11225
+ {
11226
+ "name": "currency",
11227
+ "description": "Stigg custom currency object with minimal fields",
11228
+ "args": [],
11229
+ "type": {
11230
+ "kind": "NON_NULL",
11231
+ "name": null,
11232
+ "ofType": {
11233
+ "kind": "OBJECT",
11234
+ "name": "SlimCustomCurrency",
11235
+ "ofType": null
11236
+ }
11237
+ },
11238
+ "isDeprecated": false,
11239
+ "deprecationReason": null
11240
+ },
11225
11241
  {
11226
11242
  "name": "currencyId",
11227
11243
  "description": "The custom currency ID of the credit grant",
@@ -11235,8 +11251,8 @@
11235
11251
  "ofType": null
11236
11252
  }
11237
11253
  },
11238
- "isDeprecated": false,
11239
- "deprecationReason": null
11254
+ "isDeprecated": true,
11255
+ "deprecationReason": "Use currency instead"
11240
11256
  },
11241
11257
  {
11242
11258
  "name": "currentBalance",
@@ -11294,7 +11310,7 @@
11294
11310
  },
11295
11311
  {
11296
11312
  "kind": "OBJECT",
11297
- "name": "CreditBalanceSummaryDTO",
11313
+ "name": "CreditBalanceSummary",
11298
11314
  "description": "Credit balance summary for a customer",
11299
11315
  "fields": [
11300
11316
  {
@@ -11312,7 +11328,7 @@
11312
11328
  "name": null,
11313
11329
  "ofType": {
11314
11330
  "kind": "OBJECT",
11315
- "name": "CreditBalanceDTO",
11331
+ "name": "CreditBalance",
11316
11332
  "ofType": null
11317
11333
  }
11318
11334
  }
@@ -68288,7 +68304,7 @@
68288
68304
  "name": null,
68289
68305
  "ofType": {
68290
68306
  "kind": "OBJECT",
68291
- "name": "CreditBalanceSummaryDTO",
68307
+ "name": "CreditBalanceSummary",
68292
68308
  "ofType": null
68293
68309
  }
68294
68310
  },
@@ -72596,6 +72612,65 @@
72596
72612
  "enumValues": null,
72597
72613
  "possibleTypes": null
72598
72614
  },
72615
+ {
72616
+ "kind": "OBJECT",
72617
+ "name": "SlimCustomCurrency",
72618
+ "description": "Stigg custom currency object with minimal fields",
72619
+ "fields": [
72620
+ {
72621
+ "name": "currencyId",
72622
+ "description": "The unique identifier for the custom currency",
72623
+ "args": [],
72624
+ "type": {
72625
+ "kind": "NON_NULL",
72626
+ "name": null,
72627
+ "ofType": {
72628
+ "kind": "SCALAR",
72629
+ "name": "String",
72630
+ "ofType": null
72631
+ }
72632
+ },
72633
+ "isDeprecated": false,
72634
+ "deprecationReason": null
72635
+ },
72636
+ {
72637
+ "name": "displayName",
72638
+ "description": "The name of the custom currency",
72639
+ "args": [],
72640
+ "type": {
72641
+ "kind": "NON_NULL",
72642
+ "name": null,
72643
+ "ofType": {
72644
+ "kind": "SCALAR",
72645
+ "name": "String",
72646
+ "ofType": null
72647
+ }
72648
+ },
72649
+ "isDeprecated": false,
72650
+ "deprecationReason": null
72651
+ },
72652
+ {
72653
+ "name": "symbol",
72654
+ "description": "The symbol of the custom currency",
72655
+ "args": [],
72656
+ "type": {
72657
+ "kind": "NON_NULL",
72658
+ "name": null,
72659
+ "ofType": {
72660
+ "kind": "SCALAR",
72661
+ "name": "String",
72662
+ "ofType": null
72663
+ }
72664
+ },
72665
+ "isDeprecated": false,
72666
+ "deprecationReason": null
72667
+ }
72668
+ ],
72669
+ "inputFields": null,
72670
+ "interfaces": [],
72671
+ "enumValues": null,
72672
+ "possibleTypes": null
72673
+ },
72599
72674
  {
72600
72675
  "kind": "OBJECT",
72601
72676
  "name": "SnowflakeCredentials",
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.16.0"
4
+ VERSION = "3.17.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.16.0
4
+ version: 3.17.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-08-12 00:00:00.000000000 Z
11
+ date: 2025-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient