stigg-api-client 3.88.0 → 3.93.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: 98cdb09c572dea40a12332a17e3d7f6686559c8d913aff068ab86923fa7937fb
4
- data.tar.gz: 47ce2fe3c7084039ca399f013fa0c955870985c1aa810a3845d80b90e3855d74
3
+ metadata.gz: bf6dcabf391d61309ae2e52fa34373c9d6237dfd4f60b81c84c69e49cca95e79
4
+ data.tar.gz: 4d54ea5261582c245bbc3627b49cc639c572f7c7fc90ecf8d6fd8ba9cd9c6437
5
5
  SHA512:
6
- metadata.gz: be2980167a3fd1d24a625e26310a4b8312be02033558d8bf79c24443eb7b7171512066a46e0bd2800a007e8fcf9c713a7688292140c2b8728a6ae5793c49a689
7
- data.tar.gz: 63c90f17aa5d8eb2e99608287573d1aa5a2158409cd2b4bb7c8dff30a41588c2b57253b322ab13237f1b543662c31a00afce9292d4a85bd3036cf372314270cd
6
+ metadata.gz: ec62cf42c2294472b394ea3773c847f7f34ba504e34cafe35e1ac9078adbe6aa5e3fb90879cab1cb4deebb955519953bb1c51857cc4de25886139b5bcde8ec77
7
+ data.tar.gz: 9a32a7ba8c7baaab269c5f75502b8d88fe87bc03210618a9a6dbccd8ac97759583c96650dd808ab05ca1089abdee6bf6d7454f40e1520538780720ec40cae339
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (3.88.0)
4
+ stigg-api-client (3.93.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -2491,9 +2491,18 @@ module Stigg
2491
2491
  GetCreditGrants = <<~GRAPHQL
2492
2492
  query GetCreditGrants($input: GetCreditGrantsInput!) {
2493
2493
  creditGrants(input: $input) {
2494
- ...CreditGrantFragment
2494
+ pageInfo {
2495
+ ...PageInfoFragment
2496
+ }
2497
+ edges {
2498
+ node {
2499
+ ...CreditGrantFragment
2500
+ }
2501
+ }
2502
+ totalCount
2495
2503
  }
2496
2504
  }
2505
+ #{Fragment::PageInfoFragment}
2497
2506
  #{Fragment::CreditGrantFragment}
2498
2507
  GRAPHQL
2499
2508
 
@@ -12120,6 +12120,116 @@
12120
12120
  "enumValues": null,
12121
12121
  "possibleTypes": null
12122
12122
  },
12123
+ {
12124
+ "kind": "OBJECT",
12125
+ "name": "CreditGrantConnection",
12126
+ "description": null,
12127
+ "fields": [
12128
+ {
12129
+ "name": "edges",
12130
+ "description": "Edges in the current page",
12131
+ "args": [],
12132
+ "type": {
12133
+ "kind": "NON_NULL",
12134
+ "name": null,
12135
+ "ofType": {
12136
+ "kind": "LIST",
12137
+ "name": null,
12138
+ "ofType": {
12139
+ "kind": "NON_NULL",
12140
+ "name": null,
12141
+ "ofType": {
12142
+ "kind": "OBJECT",
12143
+ "name": "CreditGrantEdge",
12144
+ "ofType": null
12145
+ }
12146
+ }
12147
+ }
12148
+ },
12149
+ "isDeprecated": false,
12150
+ "deprecationReason": null
12151
+ },
12152
+ {
12153
+ "name": "pageInfo",
12154
+ "description": "Pagination information",
12155
+ "args": [],
12156
+ "type": {
12157
+ "kind": "NON_NULL",
12158
+ "name": null,
12159
+ "ofType": {
12160
+ "kind": "OBJECT",
12161
+ "name": "PageInfo",
12162
+ "ofType": null
12163
+ }
12164
+ },
12165
+ "isDeprecated": false,
12166
+ "deprecationReason": null
12167
+ },
12168
+ {
12169
+ "name": "totalCount",
12170
+ "description": "Total number of items matching the filter",
12171
+ "args": [],
12172
+ "type": {
12173
+ "kind": "NON_NULL",
12174
+ "name": null,
12175
+ "ofType": {
12176
+ "kind": "SCALAR",
12177
+ "name": "Int",
12178
+ "ofType": null
12179
+ }
12180
+ },
12181
+ "isDeprecated": false,
12182
+ "deprecationReason": null
12183
+ }
12184
+ ],
12185
+ "inputFields": null,
12186
+ "interfaces": [],
12187
+ "enumValues": null,
12188
+ "possibleTypes": null
12189
+ },
12190
+ {
12191
+ "kind": "OBJECT",
12192
+ "name": "CreditGrantEdge",
12193
+ "description": null,
12194
+ "fields": [
12195
+ {
12196
+ "name": "cursor",
12197
+ "description": "An opaque cursor for this item",
12198
+ "args": [],
12199
+ "type": {
12200
+ "kind": "NON_NULL",
12201
+ "name": null,
12202
+ "ofType": {
12203
+ "kind": "SCALAR",
12204
+ "name": "String",
12205
+ "ofType": null
12206
+ }
12207
+ },
12208
+ "isDeprecated": false,
12209
+ "deprecationReason": null
12210
+ },
12211
+ {
12212
+ "name": "node",
12213
+ "description": "The item at the edge",
12214
+ "args": [],
12215
+ "type": {
12216
+ "kind": "NON_NULL",
12217
+ "name": null,
12218
+ "ofType": {
12219
+ "kind": "OBJECT",
12220
+ "name": "CreditGrant",
12221
+ "ofType": null
12222
+ }
12223
+ },
12224
+ "isDeprecated": false,
12225
+ "deprecationReason": null
12226
+ }
12227
+ ],
12228
+ "inputFields": null,
12229
+ "interfaces": [],
12230
+ "enumValues": null,
12231
+ "possibleTypes": null
12232
+ },
12123
12233
  {
12124
12234
  "kind": "INPUT_OBJECT",
12125
12235
  "name": "CreditGrantInput",
@@ -36326,6 +36436,18 @@
36326
36436
  "isDeprecated": false,
36327
36437
  "deprecationReason": null
36328
36438
  },
36439
+ {
36440
+ "name": "paging",
36441
+ "description": "Cursor-based pagination input",
36442
+ "type": {
36443
+ "kind": "INPUT_OBJECT",
36444
+ "name": "CursorPaging",
36445
+ "ofType": null
36446
+ },
36447
+ "defaultValue": null,
36448
+ "isDeprecated": false,
36449
+ "deprecationReason": null
36450
+ },
36329
36451
  {
36330
36452
  "name": "resourceId",
36331
36453
  "description": "The resource ID of the credit grant",
@@ -71662,17 +71784,9 @@
71662
71784
  "kind": "NON_NULL",
71663
71785
  "name": null,
71664
71786
  "ofType": {
71665
- "kind": "LIST",
71666
- "name": null,
71667
- "ofType": {
71668
- "kind": "NON_NULL",
71669
- "name": null,
71670
- "ofType": {
71671
- "kind": "OBJECT",
71672
- "name": "CreditGrant",
71673
- "ofType": null
71674
- }
71675
- }
71787
+ "kind": "OBJECT",
71788
+ "name": "CreditGrantConnection",
71789
+ "ofType": null
71676
71790
  }
71677
71791
  },
71678
71792
  "isDeprecated": false,
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.88.0"
4
+ VERSION = "3.93.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.88.0
4
+ version: 3.93.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-09-17 00:00:00.000000000 Z
11
+ date: 2025-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient