stigg-api-client 0.465.0 → 0.467.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd0aa3943b97efaeb8075185f6be74e7617f9f441e91da147ef8a697a8c55794
4
- data.tar.gz: f46745c1da6728df5cd01d013efb6478ad5980b65ff8389c7827c3a533b9f38e
3
+ metadata.gz: 12eb6a4f7d144c2f85d599a53ac7006ec81971c90949925d1b526f3262d28cc0
4
+ data.tar.gz: ac68c47701bc49199de65eb0772c7e78a5c83bce8af6e5df0a4489bfd4f4cdc1
5
5
  SHA512:
6
- metadata.gz: aabcea1dac33d6d578ee64fcaf5591a21d3dd9bda568758b1465b4721b4b65f4947a193b38ef8616e6cfa430fa426d5e6a84892c334400c3a617e09f688e68e7
7
- data.tar.gz: 5fbcae74c6370d923347c02d9846806e5ca88213b7f0a7f9ece80f9c47154ed6609f4e64cb078924a8f5b86a1b8bc47fc5876e0baa7acdb0d0b5b86d36841f8e
6
+ metadata.gz: 36582e1c07e97ce8fd1f75e3ac52ea04721ab51d7fd426bc5a97f77d38dc1ef69e932a2542eebfbbc9ecb0eea174ec475ed9a8a42e8d2db115e030d71199c305
7
+ data.tar.gz: 240767babd110404e3a60660e4b58f1bea61940299503db51f8e1ad6d927bcf9c433ac1d1cb009e161a18e84c77160e36cdd869a887b16d8328604422daa1216
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.465.0)
4
+ stigg-api-client (0.467.0)
5
5
  graphlient (~> 0.7.0)
6
6
 
7
7
  GEM
@@ -923,6 +923,18 @@ module Stigg
923
923
  }
924
924
  }
925
925
  GRAPHQL
926
+
927
+ UsageHistoryFragment = <<~GRAPHQL
928
+ fragment UsageHistoryFragment on UsageHistory {
929
+ startDate
930
+ endDate
931
+ usageMeasurements {
932
+ date
933
+ value
934
+ isResetPoint
935
+ }
936
+ }
937
+ GRAPHQL
926
938
  end
927
939
 
928
940
  module Mutation
@@ -1255,6 +1267,15 @@ module Stigg
1255
1267
  #{Fragment::LayoutConfigurationFragment}
1256
1268
  GRAPHQL
1257
1269
 
1270
+ UsageHistory = <<~GRAPHQL
1271
+ query ($usageHistoryInput: UsageHistoryInput!) {
1272
+ usageHistory(usageHistoryInput: $usageHistoryInput) {
1273
+ ...UsageHistoryFragment
1274
+ }
1275
+ }
1276
+ #{Fragment::UsageHistoryFragment}
1277
+ GRAPHQL
1278
+
1258
1279
  EntitlementsUpdated = <<~GRAPHQL
1259
1280
  subscription {
1260
1281
  entitlementsUpdated {
@@ -19186,6 +19186,26 @@
19186
19186
  "isDeprecated": false,
19187
19187
  "deprecationReason": null
19188
19188
  },
19189
+ {
19190
+ "name": "billableFeatures",
19191
+ "description": null,
19192
+ "type": {
19193
+ "kind": "LIST",
19194
+ "name": null,
19195
+ "ofType": {
19196
+ "kind": "NON_NULL",
19197
+ "name": null,
19198
+ "ofType": {
19199
+ "kind": "INPUT_OBJECT",
19200
+ "name": "BillableFeatureInput",
19201
+ "ofType": null
19202
+ }
19203
+ }
19204
+ },
19205
+ "defaultValue": null,
19206
+ "isDeprecated": false,
19207
+ "deprecationReason": null
19208
+ },
19189
19209
  {
19190
19210
  "name": "billingCountryCode",
19191
19211
  "description": null,
@@ -19369,6 +19389,26 @@
19369
19389
  "isDeprecated": false,
19370
19390
  "deprecationReason": null
19371
19391
  },
19392
+ {
19393
+ "name": "billableFeatures",
19394
+ "description": null,
19395
+ "type": {
19396
+ "kind": "LIST",
19397
+ "name": null,
19398
+ "ofType": {
19399
+ "kind": "NON_NULL",
19400
+ "name": null,
19401
+ "ofType": {
19402
+ "kind": "INPUT_OBJECT",
19403
+ "name": "BillableFeatureInput",
19404
+ "ofType": null
19405
+ }
19406
+ }
19407
+ },
19408
+ "defaultValue": null,
19409
+ "isDeprecated": false,
19410
+ "deprecationReason": null
19411
+ },
19372
19412
  {
19373
19413
  "name": "environmentId",
19374
19414
  "description": null,
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "0.465.0"
4
+ VERSION = "0.467.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: 0.465.0
4
+ version: 0.467.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-13 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient