stigg-api-client 5.62.0 → 5.64.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: f737f03196736941102282f5ee0f9ac4a56094ba6a6e20ba84dd452315e30276
4
- data.tar.gz: 0224d524e1fce2b9fc2f54f902c6b9553ee9882b5f364b73bb3e0412c0de584a
3
+ metadata.gz: b000afdd8317833fc77730ab6a36d5e16fc19483952d3ac0e61dc04a73819bb5
4
+ data.tar.gz: caa50b80dcd9287add4eca222708ac25999c31d925944a1c63cdb874882e5708
5
5
  SHA512:
6
- metadata.gz: 86984223d99eb98624c834d0f4ba2481d914f02023cbcf251548cb5f9db2235e865207bba339e9f03560e3a8d04e6a199a92be66c3fad138cf8e6cef1786a5a7
7
- data.tar.gz: d7b8cf3e9f36a93c89b7dcc6ca7a8458178e413a320e57609be408ca773a1d267ce2b1ec7fe307d145be5ceb91152d34f944fe4e16e890c2621e4d6ccba25bfc
6
+ metadata.gz: 95b5f0b913f40ec5bd8482b938de0e03303016466c11a4dc466500fd03f9227ad75e648d70aa88c00b7eb0cc9af67346125fdeab71758feedf0f5898086cf111
7
+ data.tar.gz: b656a5703b53a1592616e95b4c9136202c42aab067c50789d8facc36a97349fe0b77fcc44f085cc8619208ac30195a3a71d33fcc63722b433050eed8158f1a34
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (5.62.0)
4
+ stigg-api-client (5.64.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -1782,6 +1782,7 @@ module Stigg
1782
1782
  updatedAt
1783
1783
  resourceId
1784
1784
  additionalMetaData
1785
+ automaticRechargeConfigurationId
1785
1786
  status
1786
1787
  paymentCollection
1787
1788
  invoiceId
@@ -2653,11 +2654,19 @@ module Stigg
2653
2654
  GetCreditLedger = <<~GRAPHQL
2654
2655
  query GetCreditLedger($input: CreditLedgerInput!) {
2655
2656
  creditsLedger(input: $input) {
2656
- events {
2657
- ...CreditLedgerFragment
2657
+ pageInfo {
2658
+ ...PageInfoFragment
2659
+ }
2660
+ edges {
2661
+ node {
2662
+ ...CreditLedgerFragment
2663
+ }
2664
+ cursor
2658
2665
  }
2666
+ totalCount
2659
2667
  }
2660
2668
  }
2669
+ #{Fragment::PageInfoFragment}
2661
2670
  #{Fragment::CreditLedgerFragment}
2662
2671
  GRAPHQL
2663
2672
 
@@ -5252,6 +5252,22 @@
5252
5252
  "isDeprecated": false,
5253
5253
  "deprecationReason": null
5254
5254
  },
5255
+ {
5256
+ "name": "currentMonthlySpend",
5257
+ "description": "Total amount spent on automatic recharge grants in the current monthly period (in USD)",
5258
+ "args": [],
5259
+ "type": {
5260
+ "kind": "NON_NULL",
5261
+ "name": null,
5262
+ "ofType": {
5263
+ "kind": "SCALAR",
5264
+ "name": "Float",
5265
+ "ofType": null
5266
+ }
5267
+ },
5268
+ "isDeprecated": false,
5269
+ "deprecationReason": null
5270
+ },
5255
5271
  {
5256
5272
  "name": "customCurrency",
5257
5273
  "description": null,
@@ -12953,6 +12969,18 @@
12953
12969
  "isDeprecated": false,
12954
12970
  "deprecationReason": null
12955
12971
  },
12972
+ {
12973
+ "name": "automaticRechargeConfigurationId",
12974
+ "description": "The ID of the automatic recharge configuration that created this grant, if applicable",
12975
+ "args": [],
12976
+ "type": {
12977
+ "kind": "SCALAR",
12978
+ "name": "UUID",
12979
+ "ofType": null
12980
+ },
12981
+ "isDeprecated": false,
12982
+ "deprecationReason": null
12983
+ },
12956
12984
  {
12957
12985
  "name": "comment",
12958
12986
  "description": "The comment for the credit grant",
@@ -14294,12 +14322,12 @@
14294
14322
  },
14295
14323
  {
14296
14324
  "kind": "OBJECT",
14297
- "name": "CreditLedger",
14298
- "description": "Credits ledger",
14325
+ "name": "CreditLedgerConnection",
14326
+ "description": null,
14299
14327
  "fields": [
14300
14328
  {
14301
- "name": "events",
14302
- "description": "List of credit ledger events",
14329
+ "name": "edges",
14330
+ "description": "Edges in the current page",
14303
14331
  "args": [],
14304
14332
  "type": {
14305
14333
  "kind": "NON_NULL",
@@ -14312,7 +14340,7 @@
14312
14340
  "name": null,
14313
14341
  "ofType": {
14314
14342
  "kind": "OBJECT",
14315
- "name": "CreditLedgerEvent",
14343
+ "name": "CreditLedgerEdge",
14316
14344
  "ofType": null
14317
14345
  }
14318
14346
  }
@@ -14320,6 +14348,81 @@
14320
14348
  },
14321
14349
  "isDeprecated": false,
14322
14350
  "deprecationReason": null
14351
+ },
14352
+ {
14353
+ "name": "pageInfo",
14354
+ "description": "Pagination information",
14355
+ "args": [],
14356
+ "type": {
14357
+ "kind": "NON_NULL",
14358
+ "name": null,
14359
+ "ofType": {
14360
+ "kind": "OBJECT",
14361
+ "name": "PageInfo",
14362
+ "ofType": null
14363
+ }
14364
+ },
14365
+ "isDeprecated": false,
14366
+ "deprecationReason": null
14367
+ },
14368
+ {
14369
+ "name": "totalCount",
14370
+ "description": "Total number of items matching the filter",
14371
+ "args": [],
14372
+ "type": {
14373
+ "kind": "NON_NULL",
14374
+ "name": null,
14375
+ "ofType": {
14376
+ "kind": "SCALAR",
14377
+ "name": "Int",
14378
+ "ofType": null
14379
+ }
14380
+ },
14381
+ "isDeprecated": false,
14382
+ "deprecationReason": null
14383
+ }
14384
+ ],
14385
+ "inputFields": null,
14386
+ "interfaces": [],
14387
+ "enumValues": null,
14388
+ "possibleTypes": null
14389
+ },
14390
+ {
14391
+ "kind": "OBJECT",
14392
+ "name": "CreditLedgerEdge",
14393
+ "description": null,
14394
+ "fields": [
14395
+ {
14396
+ "name": "cursor",
14397
+ "description": "An opaque cursor for this item",
14398
+ "args": [],
14399
+ "type": {
14400
+ "kind": "NON_NULL",
14401
+ "name": null,
14402
+ "ofType": {
14403
+ "kind": "SCALAR",
14404
+ "name": "String",
14405
+ "ofType": null
14406
+ }
14407
+ },
14408
+ "isDeprecated": false,
14409
+ "deprecationReason": null
14410
+ },
14411
+ {
14412
+ "name": "node",
14413
+ "description": "The item at the edge",
14414
+ "args": [],
14415
+ "type": {
14416
+ "kind": "NON_NULL",
14417
+ "name": null,
14418
+ "ofType": {
14419
+ "kind": "OBJECT",
14420
+ "name": "CreditLedgerEvent",
14421
+ "ofType": null
14422
+ }
14423
+ },
14424
+ "isDeprecated": false,
14425
+ "deprecationReason": null
14323
14426
  }
14324
14427
  ],
14325
14428
  "inputFields": null,
@@ -14511,6 +14614,18 @@
14511
14614
  "description": "Input for retrieving credit ledger",
14512
14615
  "fields": null,
14513
14616
  "inputFields": [
14617
+ {
14618
+ "name": "currencyId",
14619
+ "description": "The credit currency ID of the credit ledger",
14620
+ "type": {
14621
+ "kind": "SCALAR",
14622
+ "name": "String",
14623
+ "ofType": null
14624
+ },
14625
+ "defaultValue": null,
14626
+ "isDeprecated": false,
14627
+ "deprecationReason": null
14628
+ },
14514
14629
  {
14515
14630
  "name": "customerId",
14516
14631
  "description": "The customer ID of the credit ledger",
@@ -14539,6 +14654,18 @@
14539
14654
  "isDeprecated": false,
14540
14655
  "deprecationReason": null
14541
14656
  },
14657
+ {
14658
+ "name": "paging",
14659
+ "description": "Cursor-based pagination input",
14660
+ "type": {
14661
+ "kind": "INPUT_OBJECT",
14662
+ "name": "CursorPaging",
14663
+ "ofType": null
14664
+ },
14665
+ "defaultValue": null,
14666
+ "isDeprecated": false,
14667
+ "deprecationReason": null
14668
+ },
14542
14669
  {
14543
14670
  "name": "resourceId",
14544
14671
  "description": "The resource ID of the credit ledger",
@@ -75019,7 +75146,7 @@
75019
75146
  "name": null,
75020
75147
  "ofType": {
75021
75148
  "kind": "OBJECT",
75022
- "name": "CreditLedger",
75149
+ "name": "CreditLedgerConnection",
75023
75150
  "ofType": null
75024
75151
  }
75025
75152
  },
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.62.0"
4
+ VERSION = "5.64.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.62.0
4
+ version: 5.64.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-12-05 00:00:00.000000000 Z
11
+ date: 2025-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient