stigg-api-client 5.46.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3da36caf64197866fc68f9ad96d92f139ef68d85aa3d06e8e26ed211e0dfc7aa
4
- data.tar.gz: 1660739de5c491d0adcb7192d7a4e676632f030f2cdd07ae558c246aca8523f8
3
+ metadata.gz: 11fe4df1a833b47529c9faa2bd8966a74bac4025b43c76aadae48ba061793b70
4
+ data.tar.gz: f501abda96de1abcc90d91df5d7b53fee6b8a081cffb1de877b4d2985a427c44
5
5
  SHA512:
6
- metadata.gz: b220007fd0a0c3411cd9781269eff8986f2b1c9581afeb53307de66dd5d25bd3d602944a65f652428a5be4bbe7723063341692ae0c69e079f331e9654932c15e
7
- data.tar.gz: 67bb012e60a537a5d00da6630dbe5440b9989a32abf4f146a82b22dfa024d0b78aa64d2559b22116cecd13629a0d0575836c6dbad4c2c749b87b45e598e4b754
6
+ metadata.gz: 6c35dc8cf11943c78dc84c61de0f5cac2f06cb68ed98316cca91fa9f38d64a912f10cd79e9291288ef80a7a0178a05eb949f6489ca3f57cd45dd7e9c7c14f49b
7
+ data.tar.gz: b68c7ec8076041a70073d475026a7be8911152bb4c0b5f4893c3b75d6346238e55e956d00e96f417b42a65c18e7387a5b902f00cab86ce64c1053bd8e59715f6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (5.46.0)
4
+ stigg-api-client (5.56.0)
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
@@ -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 {
@@ -13130,6 +13130,29 @@
13130
13130
  "enumValues": null,
13131
13131
  "possibleTypes": null
13132
13132
  },
13133
+ {
13134
+ "kind": "ENUM",
13135
+ "name": "CreditGrantCadence",
13136
+ "description": "Credit grant cadence",
13137
+ "fields": null,
13138
+ "inputFields": null,
13139
+ "interfaces": null,
13140
+ "enumValues": [
13141
+ {
13142
+ "name": "BEGINNING_OF_BILLING_PERIOD",
13143
+ "description": "Beginning of billing period",
13144
+ "isDeprecated": false,
13145
+ "deprecationReason": null
13146
+ },
13147
+ {
13148
+ "name": "MONTHLY",
13149
+ "description": "Monthly",
13150
+ "isDeprecated": false,
13151
+ "deprecationReason": null
13152
+ }
13153
+ ],
13154
+ "possibleTypes": null
13155
+ },
13133
13156
  {
13134
13157
  "kind": "OBJECT",
13135
13158
  "name": "CreditGrantConnection",
@@ -59378,18 +59401,6 @@
59378
59401
  "isDeprecated": false,
59379
59402
  "deprecationReason": null
59380
59403
  },
59381
- {
59382
- "name": "pricingModel",
59383
- "description": "The pricing model of the package pricing",
59384
- "type": {
59385
- "kind": "INPUT_OBJECT",
59386
- "name": "PricingModelCreateInput",
59387
- "ofType": null
59388
- },
59389
- "defaultValue": null,
59390
- "isDeprecated": false,
59391
- "deprecationReason": null
59392
- },
59393
59404
  {
59394
59405
  "name": "pricingModels",
59395
59406
  "description": "The list of pricing models of the package pricing",
@@ -65698,6 +65709,18 @@
65698
65709
  "isDeprecated": false,
65699
65710
  "deprecationReason": null
65700
65711
  },
65712
+ {
65713
+ "name": "creditGrantCadence",
65714
+ "description": "The recurring credit grant cadence of the price",
65715
+ "args": [],
65716
+ "type": {
65717
+ "kind": "ENUM",
65718
+ "name": "CreditGrantCadence",
65719
+ "ofType": null
65720
+ },
65721
+ "isDeprecated": false,
65722
+ "deprecationReason": null
65723
+ },
65701
65724
  {
65702
65725
  "name": "creditRate",
65703
65726
  "description": "The credit rate for this price",
@@ -65734,6 +65757,18 @@
65734
65757
  "isDeprecated": false,
65735
65758
  "deprecationReason": null
65736
65759
  },
65760
+ {
65761
+ "name": "customCurrency",
65762
+ "description": "The custom currency of the price this price applies to",
65763
+ "args": [],
65764
+ "type": {
65765
+ "kind": "OBJECT",
65766
+ "name": "CustomCurrency",
65767
+ "ofType": null
65768
+ },
65769
+ "isDeprecated": false,
65770
+ "deprecationReason": null
65771
+ },
65737
65772
  {
65738
65773
  "name": "environmentId",
65739
65774
  "description": "The unique identifier for the environment",
@@ -66231,6 +66266,18 @@
66231
66266
  "isDeprecated": false,
66232
66267
  "deprecationReason": null
66233
66268
  },
66269
+ {
66270
+ "name": "creditGrantCadence",
66271
+ "description": "The recurring credit grant cadence of the price",
66272
+ "args": [],
66273
+ "type": {
66274
+ "kind": "ENUM",
66275
+ "name": "CreditGrantCadence",
66276
+ "ofType": null
66277
+ },
66278
+ "isDeprecated": false,
66279
+ "deprecationReason": null
66280
+ },
66234
66281
  {
66235
66282
  "name": "creditRate",
66236
66283
  "description": "The credit rate for this price",
@@ -66267,6 +66314,18 @@
66267
66314
  "isDeprecated": false,
66268
66315
  "deprecationReason": null
66269
66316
  },
66317
+ {
66318
+ "name": "customCurrency",
66319
+ "description": "The custom currency of the price this price applies to",
66320
+ "args": [],
66321
+ "type": {
66322
+ "kind": "OBJECT",
66323
+ "name": "CustomCurrency",
66324
+ "ofType": null
66325
+ },
66326
+ "isDeprecated": false,
66327
+ "deprecationReason": null
66328
+ },
66270
66329
  {
66271
66330
  "name": "environmentId",
66272
66331
  "description": "The unique identifier for the environment",
@@ -67327,6 +67386,18 @@
67327
67386
  "isDeprecated": false,
67328
67387
  "deprecationReason": null
67329
67388
  },
67389
+ {
67390
+ "name": "creditGrantCadence",
67391
+ "description": "The recurring credit grant cadence of the pricing model",
67392
+ "type": {
67393
+ "kind": "ENUM",
67394
+ "name": "CreditGrantCadence",
67395
+ "ofType": null
67396
+ },
67397
+ "defaultValue": null,
67398
+ "isDeprecated": false,
67399
+ "deprecationReason": null
67400
+ },
67330
67401
  {
67331
67402
  "name": "creditRate",
67332
67403
  "description": "The credit rate for this period",
@@ -67434,6 +67505,18 @@
67434
67505
  "isDeprecated": false,
67435
67506
  "deprecationReason": null
67436
67507
  },
67508
+ {
67509
+ "name": "creditGrantCadence",
67510
+ "description": "The recurring credit grant cadence of the pricing model",
67511
+ "type": {
67512
+ "kind": "ENUM",
67513
+ "name": "CreditGrantCadence",
67514
+ "ofType": null
67515
+ },
67516
+ "defaultValue": null,
67517
+ "isDeprecated": false,
67518
+ "deprecationReason": null
67519
+ },
67437
67520
  {
67438
67521
  "name": "creditRate",
67439
67522
  "description": "The credit rate for this period",
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.46.0"
4
+ VERSION = "5.56.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: 5.46.0
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-25 00:00:00.000000000 Z
11
+ date: 2025-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient