stigg-api-client 6.7.0 → 6.9.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: 6671e1f6924001e2572706278d363c08a68d67eca4c76f5a16cb3ef4d76081df
4
- data.tar.gz: f7022a4477f611c3338d5c4fb3b669ed713fd2d8c9351b593ced372d7fa6b2ad
3
+ metadata.gz: c695ca9ff81ffb2732d5aa9e4e037e36da5f9e76e95aa0551d1b8c380dec5fe7
4
+ data.tar.gz: bc6d188849a355f359b474567f8bfeb4d5cfc39eec872c047ff1ba64a83fc357
5
5
  SHA512:
6
- metadata.gz: 9911df7cdfacff76139d3537a9adfb965d717b16cb7a79905d9e21085b04b5345322973251d9bfd9a8a037659d25dc273ee52fc4f04e416b0d0961e8b8527d5b
7
- data.tar.gz: 84a7cc8d3be7005ad058bedf9cc809f67fb853649bf683561712f96e4ad55937a9cf3ddba4f324767a86ed1a3ca0a05ad48a0be67d3aa36247c6ef49fea7413f
6
+ metadata.gz: 735fb3588177a97fb77b3ce28634d499a53a72102b9c076e12be01b846754953b78669f0335b2f472496b38b177228a4b4fb95ae6827ce60865e7d43dcea0a74
7
+ data.tar.gz: 86b21fb42d836f0f6ab58a8f7dbf28f5957a511f1e58416304a08a968c0bd0a6e10f64967348d3deee2afce20049af9ed561f258daa77e0b54cc91df0f02e7b4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (6.7.0)
4
+ stigg-api-client (6.9.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -2026,6 +2026,9 @@ module Stigg
2026
2026
  currency {
2027
2027
  ...SlimCustomCurrencyFragment
2028
2028
  }
2029
+ pageInfo {
2030
+ ...PageInfoFragment
2031
+ }
2029
2032
  }
2030
2033
  GRAPHQL
2031
2034
 
@@ -2994,6 +2997,7 @@ module Stigg
2994
2997
  }
2995
2998
  #{Fragment::CreditUsageFragment}
2996
2999
  #{Fragment::SlimCustomCurrencyFragment}
3000
+ #{Fragment::PageInfoFragment}
2997
3001
  GRAPHQL
2998
3002
 
2999
3003
  GetAutomaticRechargeConfiguration = <<~GRAPHQL
@@ -17294,6 +17294,22 @@
17294
17294
  "isDeprecated": false,
17295
17295
  "deprecationReason": null
17296
17296
  },
17297
+ {
17298
+ "name": "pageInfo",
17299
+ "description": "Cursor-based pagination state for the returned series. `startCursor`/`endCursor` anchor the current page; `hasNextPage`/`hasPreviousPage` indicate whether further pages exist. The series axis is `groupBy` when provided, otherwise `featureId`",
17300
+ "args": [],
17301
+ "type": {
17302
+ "kind": "NON_NULL",
17303
+ "name": null,
17304
+ "ofType": {
17305
+ "kind": "OBJECT",
17306
+ "name": "PageInfo",
17307
+ "ofType": null
17308
+ }
17309
+ },
17310
+ "isDeprecated": false,
17311
+ "deprecationReason": null
17312
+ },
17297
17313
  {
17298
17314
  "name": "series",
17299
17315
  "description": "Series of credit usage data points",
@@ -17358,6 +17374,16 @@
17358
17374
  "isDeprecated": false,
17359
17375
  "deprecationReason": null
17360
17376
  },
17377
+ {
17378
+ "name": "endDate",
17379
+ "description": "End date for custom time range filter. Defaults to now when not provided.",
17380
+ "type": {
17381
+ "kind": "SCALAR",
17382
+ "name": "DateTime",
17383
+ "ofType": null
17384
+ },
17385
+ "defaultValue": null
17386
+ },
17361
17387
  {
17362
17388
  "name": "environmentId",
17363
17389
  "description": "The environment ID of the credit usage",
@@ -17370,6 +17396,34 @@
17370
17396
  "isDeprecated": false,
17371
17397
  "deprecationReason": null
17372
17398
  },
17399
+ {
17400
+ "name": "groupBy",
17401
+ "description": "List of feature dimension keys to group usage series by (up to 3)",
17402
+ "type": {
17403
+ "kind": "LIST",
17404
+ "name": null,
17405
+ "ofType": {
17406
+ "kind": "NON_NULL",
17407
+ "name": null,
17408
+ "ofType": {
17409
+ "kind": "SCALAR",
17410
+ "name": "String",
17411
+ "ofType": null
17412
+ }
17413
+ }
17414
+ },
17415
+ "defaultValue": null
17416
+ },
17417
+ {
17418
+ "name": "paging",
17419
+ "description": "Cursor-based pagination input",
17420
+ "type": {
17421
+ "kind": "INPUT_OBJECT",
17422
+ "name": "CursorPaging",
17423
+ "ofType": null
17424
+ },
17425
+ "defaultValue": null
17426
+ },
17373
17427
  {
17374
17428
  "name": "resourceId",
17375
17429
  "description": "The resource ID of the credit usage",
@@ -17382,6 +17436,16 @@
17382
17436
  "isDeprecated": false,
17383
17437
  "deprecationReason": null
17384
17438
  },
17439
+ {
17440
+ "name": "startDate",
17441
+ "description": "Start date for custom time range filter. Takes precedence over timeRange when provided.",
17442
+ "type": {
17443
+ "kind": "SCALAR",
17444
+ "name": "DateTime",
17445
+ "ofType": null
17446
+ },
17447
+ "defaultValue": null
17448
+ },
17385
17449
  {
17386
17450
  "name": "timeRange",
17387
17451
  "description": "The time range for the credit usage",
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "6.7.0"
4
+ VERSION = "6.9.0"
5
5
  end
data/package.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@stigg/api-client-ruby",
3
- "version": "6.7.0"
3
+ "version": "6.9.0"
4
4
  }
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: 6.7.0
4
+ version: 6.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-03-25 00:00:00.000000000 Z
11
+ date: 2026-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient