stigg-api-client 1.121.1 → 1.122.1

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: 750944df52c954c72f604e97e3fbc5d1156371b28e1d1951c9d57e6ed102502d
4
- data.tar.gz: 011b4d26855990de3e4afdcbbd3bc94787ef8d2394d940338f3c26566fae82e0
3
+ metadata.gz: 2831be8876e674512a6f38e6ce7790b97710687cc7675f18c325ebc1936a3a8b
4
+ data.tar.gz: 77426cc89292ce84ad23d98db08245a55d7c15123d44981be8f2ab8a373f1fdb
5
5
  SHA512:
6
- metadata.gz: 80c965ef57d1fea88410019b9a3dd16487aa9a194e5b8838ddf5c3a10e3be0712f2d4d756c75fe63e0c924f07c8a07415ce39aabadb28e58e356b11e1a943a58
7
- data.tar.gz: 794fd5f0b684b30eab83cd4c873140af3295d29fa0438208857560b92e0d165d406d934646b0167fe2a8fdfc2f37f2fbf5b33e729ad12480e380887835dea51f
6
+ metadata.gz: 0d1fa032b46cc24c764293c8e65174b7bcd960f418d0c9ca9c89cd692ef2a60b59ad05a4c04f926bd67c29f60534bc443d2e4e217ceba526ca5964221a5e250a
7
+ data.tar.gz: ff88609be22b210c43f6670d7ee4ea55c34325c0c606d010b38c0b751bab732c377229a28c882c96870ff472cd575689ddedf80a73ae0def493e854eb27e6878
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (1.121.1)
4
+ stigg-api-client (1.122.1)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql-client (~> 0.19)
7
7
 
@@ -3462,6 +3462,18 @@
3462
3462
  "isDeprecated": false,
3463
3463
  "deprecationReason": null
3464
3464
  },
3465
+ {
3466
+ "name": "budget",
3467
+ "description": "Budget configuration",
3468
+ "type": {
3469
+ "kind": "INPUT_OBJECT",
3470
+ "name": "BudgetConfigurationInput",
3471
+ "ofType": null
3472
+ },
3473
+ "defaultValue": null,
3474
+ "isDeprecated": false,
3475
+ "deprecationReason": null
3476
+ },
3465
3477
  {
3466
3478
  "name": "customerId",
3467
3479
  "description": null,
@@ -5294,6 +5306,92 @@
5294
5306
  "enumValues": null,
5295
5307
  "possibleTypes": null
5296
5308
  },
5309
+ {
5310
+ "kind": "OBJECT",
5311
+ "name": "BudgetConfiguration",
5312
+ "description": "Budget configuration",
5313
+ "fields": [
5314
+ {
5315
+ "name": "hasSoftLimit",
5316
+ "description": "Indicates the behavior of the budget when the limit is exceeded. If true, the limit is a soft limit, if false, the limit is a hard limit. Default is false.",
5317
+ "args": [],
5318
+ "type": {
5319
+ "kind": "NON_NULL",
5320
+ "name": null,
5321
+ "ofType": {
5322
+ "kind": "SCALAR",
5323
+ "name": "Boolean",
5324
+ "ofType": null
5325
+ }
5326
+ },
5327
+ "isDeprecated": false,
5328
+ "deprecationReason": null
5329
+ },
5330
+ {
5331
+ "name": "limit",
5332
+ "description": "The maximum spending limit",
5333
+ "args": [],
5334
+ "type": {
5335
+ "kind": "NON_NULL",
5336
+ "name": null,
5337
+ "ofType": {
5338
+ "kind": "SCALAR",
5339
+ "name": "Float",
5340
+ "ofType": null
5341
+ }
5342
+ },
5343
+ "isDeprecated": false,
5344
+ "deprecationReason": null
5345
+ }
5346
+ ],
5347
+ "inputFields": null,
5348
+ "interfaces": [],
5349
+ "enumValues": null,
5350
+ "possibleTypes": null
5351
+ },
5352
+ {
5353
+ "kind": "INPUT_OBJECT",
5354
+ "name": "BudgetConfigurationInput",
5355
+ "description": "Budget configuration input",
5356
+ "fields": null,
5357
+ "inputFields": [
5358
+ {
5359
+ "name": "hasSoftLimit",
5360
+ "description": "Indicates the behavior of the budget when the limit is exceeded. If true, the limit is a soft limit, if false, the limit is a hard limit. Default is false.",
5361
+ "type": {
5362
+ "kind": "NON_NULL",
5363
+ "name": null,
5364
+ "ofType": {
5365
+ "kind": "SCALAR",
5366
+ "name": "Boolean",
5367
+ "ofType": null
5368
+ }
5369
+ },
5370
+ "defaultValue": null,
5371
+ "isDeprecated": false,
5372
+ "deprecationReason": null
5373
+ },
5374
+ {
5375
+ "name": "limit",
5376
+ "description": "The maximum spending limit",
5377
+ "type": {
5378
+ "kind": "NON_NULL",
5379
+ "name": null,
5380
+ "ofType": {
5381
+ "kind": "SCALAR",
5382
+ "name": "Float",
5383
+ "ofType": null
5384
+ }
5385
+ },
5386
+ "defaultValue": null,
5387
+ "isDeprecated": false,
5388
+ "deprecationReason": null
5389
+ }
5390
+ ],
5391
+ "interfaces": null,
5392
+ "enumValues": null,
5393
+ "possibleTypes": null
5394
+ },
5297
5395
  {
5298
5396
  "kind": "OBJECT",
5299
5397
  "name": "CannotDeleteCustomerError",
@@ -15550,6 +15648,30 @@
15550
15648
  "isDeprecated": false,
15551
15649
  "deprecationReason": null
15552
15650
  },
15651
+ {
15652
+ "name": "budget",
15653
+ "description": "Budget configuration",
15654
+ "args": [],
15655
+ "type": {
15656
+ "kind": "OBJECT",
15657
+ "name": "BudgetConfiguration",
15658
+ "ofType": null
15659
+ },
15660
+ "isDeprecated": false,
15661
+ "deprecationReason": null
15662
+ },
15663
+ {
15664
+ "name": "budgetExceeded",
15665
+ "description": "Indicates if the budget has been exceeded",
15666
+ "args": [],
15667
+ "type": {
15668
+ "kind": "SCALAR",
15669
+ "name": "Boolean",
15670
+ "ofType": null
15671
+ },
15672
+ "isDeprecated": false,
15673
+ "deprecationReason": null
15674
+ },
15553
15675
  {
15554
15676
  "name": "cancelReason",
15555
15677
  "description": null,
@@ -56435,6 +56557,18 @@
56435
56557
  "isDeprecated": false,
56436
56558
  "deprecationReason": null
56437
56559
  },
56560
+ {
56561
+ "name": "budget",
56562
+ "description": "Budget configuration",
56563
+ "type": {
56564
+ "kind": "INPUT_OBJECT",
56565
+ "name": "BudgetConfigurationInput",
56566
+ "ofType": null
56567
+ },
56568
+ "defaultValue": null,
56569
+ "isDeprecated": false,
56570
+ "deprecationReason": null
56571
+ },
56438
56572
  {
56439
56573
  "name": "planId",
56440
56574
  "description": null,
@@ -56765,6 +56899,18 @@
56765
56899
  "isDeprecated": false,
56766
56900
  "deprecationReason": null
56767
56901
  },
56902
+ {
56903
+ "name": "budget",
56904
+ "description": "Budget configuration",
56905
+ "type": {
56906
+ "kind": "INPUT_OBJECT",
56907
+ "name": "BudgetConfigurationInput",
56908
+ "ofType": null
56909
+ },
56910
+ "defaultValue": null,
56911
+ "isDeprecated": false,
56912
+ "deprecationReason": null
56913
+ },
56768
56914
  {
56769
56915
  "name": "checkoutOptions",
56770
56916
  "description": null,
@@ -57104,6 +57250,18 @@
57104
57250
  "isDeprecated": false,
57105
57251
  "deprecationReason": null
57106
57252
  },
57253
+ {
57254
+ "name": "budget",
57255
+ "description": "Budget configuration",
57256
+ "type": {
57257
+ "kind": "INPUT_OBJECT",
57258
+ "name": "BudgetConfigurationInput",
57259
+ "ofType": null
57260
+ },
57261
+ "defaultValue": null,
57262
+ "isDeprecated": false,
57263
+ "deprecationReason": null
57264
+ },
57107
57265
  {
57108
57266
  "name": "checkoutOptions",
57109
57267
  "description": null,
@@ -66846,6 +67004,18 @@
66846
67004
  "isDeprecated": false,
66847
67005
  "deprecationReason": null
66848
67006
  },
67007
+ {
67008
+ "name": "budget",
67009
+ "description": "Budget configuration",
67010
+ "type": {
67011
+ "kind": "INPUT_OBJECT",
67012
+ "name": "BudgetConfigurationInput",
67013
+ "ofType": null
67014
+ },
67015
+ "defaultValue": null,
67016
+ "isDeprecated": false,
67017
+ "deprecationReason": null
67018
+ },
66849
67019
  {
66850
67020
  "name": "crmId",
66851
67021
  "description": null,
@@ -74497,6 +74667,18 @@
74497
74667
  "isDeprecated": false,
74498
74668
  "deprecationReason": null
74499
74669
  },
74670
+ {
74671
+ "name": "budget",
74672
+ "description": "Budget configuration",
74673
+ "type": {
74674
+ "kind": "INPUT_OBJECT",
74675
+ "name": "BudgetConfigurationInput",
74676
+ "ofType": null
74677
+ },
74678
+ "defaultValue": null,
74679
+ "isDeprecated": false,
74680
+ "deprecationReason": null
74681
+ },
74500
74682
  {
74501
74683
  "name": "environmentId",
74502
74684
  "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 = "1.121.1"
4
+ VERSION = "1.122.1"
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: 1.121.1
4
+ version: 1.122.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg