stigg-api-client 5.63.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: d149ae361c6e0e937ae8ad48820e4a0d22ccbff5f9f729d954d3673e9bab685e
4
- data.tar.gz: 613fd3935282a7f115392aafe98053a3cb2d7c82b102ee05bf759da7166d00d6
3
+ metadata.gz: b000afdd8317833fc77730ab6a36d5e16fc19483952d3ac0e61dc04a73819bb5
4
+ data.tar.gz: caa50b80dcd9287add4eca222708ac25999c31d925944a1c63cdb874882e5708
5
5
  SHA512:
6
- metadata.gz: ca6081d75be4afeebe2557e00ae18d2f58537eadcf5948b2706611093cd01f37b419ba7cd46c5bc0090fa3e5f69f0c769f538b28ebd05b9650cc1b2fd2bdc5ef
7
- data.tar.gz: a3c614b44f3a69d7efdc10a799cd7a2f4a8aada11a8b97eaac0199f67379b98e6d2b67a136144704c9e81f8ea71a5359401f8f58019cc590b5371b50de354946
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.63.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
 
@@ -2654,11 +2654,19 @@ module Stigg
2654
2654
  GetCreditLedger = <<~GRAPHQL
2655
2655
  query GetCreditLedger($input: CreditLedgerInput!) {
2656
2656
  creditsLedger(input: $input) {
2657
- events {
2658
- ...CreditLedgerFragment
2657
+ pageInfo {
2658
+ ...PageInfoFragment
2659
+ }
2660
+ edges {
2661
+ node {
2662
+ ...CreditLedgerFragment
2663
+ }
2664
+ cursor
2659
2665
  }
2666
+ totalCount
2660
2667
  }
2661
2668
  }
2669
+ #{Fragment::PageInfoFragment}
2662
2670
  #{Fragment::CreditLedgerFragment}
2663
2671
  GRAPHQL
2664
2672
 
@@ -14322,12 +14322,12 @@
14322
14322
  },
14323
14323
  {
14324
14324
  "kind": "OBJECT",
14325
- "name": "CreditLedger",
14326
- "description": "Credits ledger",
14325
+ "name": "CreditLedgerConnection",
14326
+ "description": null,
14327
14327
  "fields": [
14328
14328
  {
14329
- "name": "events",
14330
- "description": "List of credit ledger events",
14329
+ "name": "edges",
14330
+ "description": "Edges in the current page",
14331
14331
  "args": [],
14332
14332
  "type": {
14333
14333
  "kind": "NON_NULL",
@@ -14340,7 +14340,7 @@
14340
14340
  "name": null,
14341
14341
  "ofType": {
14342
14342
  "kind": "OBJECT",
14343
- "name": "CreditLedgerEvent",
14343
+ "name": "CreditLedgerEdge",
14344
14344
  "ofType": null
14345
14345
  }
14346
14346
  }
@@ -14348,6 +14348,81 @@
14348
14348
  },
14349
14349
  "isDeprecated": false,
14350
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
14351
14426
  }
14352
14427
  ],
14353
14428
  "inputFields": null,
@@ -14539,6 +14614,18 @@
14539
14614
  "description": "Input for retrieving credit ledger",
14540
14615
  "fields": null,
14541
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
+ },
14542
14629
  {
14543
14630
  "name": "customerId",
14544
14631
  "description": "The customer ID of the credit ledger",
@@ -14567,6 +14654,18 @@
14567
14654
  "isDeprecated": false,
14568
14655
  "deprecationReason": null
14569
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
+ },
14570
14669
  {
14571
14670
  "name": "resourceId",
14572
14671
  "description": "The resource ID of the credit ledger",
@@ -75047,7 +75146,7 @@
75047
75146
  "name": null,
75048
75147
  "ofType": {
75049
75148
  "kind": "OBJECT",
75050
- "name": "CreditLedger",
75149
+ "name": "CreditLedgerConnection",
75051
75150
  "ofType": null
75052
75151
  }
75053
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.63.0"
4
+ VERSION = "5.64.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stigg-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.63.0
4
+ version: 5.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg