stigg-api-client 1.125.0 → 1.128.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: 862420daa10429d2d8f7232493df380e0febff71c88978efc45b00a1aeedb487
4
- data.tar.gz: 5c50610047040f54c751c19d977f6879496edc1d2099f6f77434147b54fb6e56
3
+ metadata.gz: d0a77776abf1900f524e6d3de29ddc08565234fa9234fb6209e770468a91c65f
4
+ data.tar.gz: 2db4640b164ac258d5a26c854b91f4a359e4d7b3186f8f4eb7c0821c7d7fed22
5
5
  SHA512:
6
- metadata.gz: 1e1f470374fe27184015e1b2b8efeec6b39287cc42455bf46865be8cd036b52a25f71fe77ed13a68abb0a7d615f297d1f2e08a101774b70a4b2f4f9e7125f498
7
- data.tar.gz: 49c320c930ce9cf49cd40b79c60ed5e3dc3afcb8b1a92a892fd7fd44e8e364348374a25fd44a1836ae555d2c11def604dfafac319ee884e6495b6f0bd5491488
6
+ metadata.gz: 62e874374b5a2af0057c8c2997509ae9a2ff91ace88307e12540f1b19c4f593c5f76f19568af005a673c181eb83cc88da76a7d953de760eb7a7b8453fcfc52c8
7
+ data.tar.gz: 1232317a0ddb411b883fe81265c53f6b5aa6338313c139473565e7e23374b7bba66eefc07466b16c5bd9c98b835c022c827ad2fc293d4615d0da134888a4cdd2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (1.125.0)
4
+ stigg-api-client (1.128.0)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql-client (~> 0.19)
7
7
 
@@ -19289,7 +19289,7 @@
19289
19289
  "fields": [
19290
19290
  {
19291
19291
  "name": "after",
19292
- "description": null,
19292
+ "description": "The value after the change",
19293
19293
  "args": [],
19294
19294
  "type": {
19295
19295
  "kind": "OBJECT",
@@ -19301,7 +19301,7 @@
19301
19301
  },
19302
19302
  {
19303
19303
  "name": "before",
19304
- "description": null,
19304
+ "description": "The value before the change",
19305
19305
  "args": [],
19306
19306
  "type": {
19307
19307
  "kind": "OBJECT",
@@ -19313,7 +19313,7 @@
19313
19313
  },
19314
19314
  {
19315
19315
  "name": "changeType",
19316
- "description": null,
19316
+ "description": "The change type",
19317
19317
  "args": [],
19318
19318
  "type": {
19319
19319
  "kind": "ENUM",
@@ -35152,6 +35152,135 @@
35152
35152
  "enumValues": null,
35153
35153
  "possibleTypes": null
35154
35154
  },
35155
+ {
35156
+ "kind": "OBJECT",
35157
+ "name": "MinimumSpend",
35158
+ "description": "Minimum spend configuration",
35159
+ "fields": [
35160
+ {
35161
+ "name": "billingPeriod",
35162
+ "description": "Minimum spend billing period",
35163
+ "args": [],
35164
+ "type": {
35165
+ "kind": "NON_NULL",
35166
+ "name": null,
35167
+ "ofType": {
35168
+ "kind": "ENUM",
35169
+ "name": "BillingPeriod",
35170
+ "ofType": null
35171
+ }
35172
+ },
35173
+ "isDeprecated": false,
35174
+ "deprecationReason": null
35175
+ },
35176
+ {
35177
+ "name": "minimum",
35178
+ "description": "The minimum spend limit",
35179
+ "args": [],
35180
+ "type": {
35181
+ "kind": "NON_NULL",
35182
+ "name": null,
35183
+ "ofType": {
35184
+ "kind": "OBJECT",
35185
+ "name": "Money",
35186
+ "ofType": null
35187
+ }
35188
+ },
35189
+ "isDeprecated": false,
35190
+ "deprecationReason": null
35191
+ }
35192
+ ],
35193
+ "inputFields": null,
35194
+ "interfaces": [],
35195
+ "enumValues": null,
35196
+ "possibleTypes": null
35197
+ },
35198
+ {
35199
+ "kind": "OBJECT",
35200
+ "name": "MinimumSpendChange",
35201
+ "description": "Minimum spend change",
35202
+ "fields": [
35203
+ {
35204
+ "name": "after",
35205
+ "description": "The value after the change",
35206
+ "args": [],
35207
+ "type": {
35208
+ "kind": "OBJECT",
35209
+ "name": "MinimumSpend",
35210
+ "ofType": null
35211
+ },
35212
+ "isDeprecated": false,
35213
+ "deprecationReason": null
35214
+ },
35215
+ {
35216
+ "name": "before",
35217
+ "description": "The value before the change",
35218
+ "args": [],
35219
+ "type": {
35220
+ "kind": "OBJECT",
35221
+ "name": "MinimumSpend",
35222
+ "ofType": null
35223
+ },
35224
+ "isDeprecated": false,
35225
+ "deprecationReason": null
35226
+ },
35227
+ {
35228
+ "name": "changeType",
35229
+ "description": "The change type",
35230
+ "args": [],
35231
+ "type": {
35232
+ "kind": "ENUM",
35233
+ "name": "ChangeType",
35234
+ "ofType": null
35235
+ },
35236
+ "isDeprecated": false,
35237
+ "deprecationReason": null
35238
+ }
35239
+ ],
35240
+ "inputFields": null,
35241
+ "interfaces": [],
35242
+ "enumValues": null,
35243
+ "possibleTypes": null
35244
+ },
35245
+ {
35246
+ "kind": "INPUT_OBJECT",
35247
+ "name": "MinimumSpendInput",
35248
+ "description": "Minimum spend input",
35249
+ "fields": null,
35250
+ "inputFields": [
35251
+ {
35252
+ "name": "billingPeriod",
35253
+ "description": "The billing period of minimum spend",
35254
+ "type": {
35255
+ "kind": "NON_NULL",
35256
+ "name": null,
35257
+ "ofType": {
35258
+ "kind": "ENUM",
35259
+ "name": "BillingPeriod",
35260
+ "ofType": null
35261
+ }
35262
+ },
35263
+ "defaultValue": null,
35264
+ "isDeprecated": false,
35265
+ "deprecationReason": null
35266
+ },
35267
+ {
35268
+ "name": "minimum",
35269
+ "description": "The minimum spend value",
35270
+ "type": {
35271
+ "kind": "INPUT_OBJECT",
35272
+ "name": "MoneyInputDTO",
35273
+ "ofType": null
35274
+ },
35275
+ "defaultValue": null,
35276
+ "isDeprecated": false,
35277
+ "deprecationReason": null
35278
+ }
35279
+ ],
35280
+ "interfaces": null,
35281
+ "enumValues": null,
35282
+ "possibleTypes": null
35283
+ },
35155
35284
  {
35156
35285
  "kind": "OBJECT",
35157
35286
  "name": "MockPaywall",
@@ -37264,6 +37393,39 @@
37264
37393
  "isDeprecated": false,
37265
37394
  "deprecationReason": null
37266
37395
  },
37396
+ {
37397
+ "name": "previewNextInvoice",
37398
+ "description": null,
37399
+ "args": [
37400
+ {
37401
+ "name": "input",
37402
+ "description": null,
37403
+ "type": {
37404
+ "kind": "NON_NULL",
37405
+ "name": null,
37406
+ "ofType": {
37407
+ "kind": "INPUT_OBJECT",
37408
+ "name": "PreviewNextInvoiceInput",
37409
+ "ofType": null
37410
+ }
37411
+ },
37412
+ "defaultValue": null,
37413
+ "isDeprecated": false,
37414
+ "deprecationReason": null
37415
+ }
37416
+ ],
37417
+ "type": {
37418
+ "kind": "NON_NULL",
37419
+ "name": null,
37420
+ "ofType": {
37421
+ "kind": "OBJECT",
37422
+ "name": "SubscriptionPreviewInvoice",
37423
+ "ofType": null
37424
+ }
37425
+ },
37426
+ "isDeprecated": false,
37427
+ "deprecationReason": null
37428
+ },
37267
37429
  {
37268
37430
  "name": "previewSubscription",
37269
37431
  "description": null,
@@ -39359,7 +39521,7 @@
39359
39521
  "fields": [
39360
39522
  {
39361
39523
  "name": "after",
39362
- "description": null,
39524
+ "description": "The value after the change",
39363
39525
  "args": [],
39364
39526
  "type": {
39365
39527
  "kind": "SCALAR",
@@ -39371,7 +39533,7 @@
39371
39533
  },
39372
39534
  {
39373
39535
  "name": "before",
39374
- "description": null,
39536
+ "description": "The value before the change",
39375
39537
  "args": [],
39376
39538
  "type": {
39377
39539
  "kind": "SCALAR",
@@ -39383,7 +39545,7 @@
39383
39545
  },
39384
39546
  {
39385
39547
  "name": "changeType",
39386
- "description": null,
39548
+ "description": "The change type",
39387
39549
  "args": [],
39388
39550
  "type": {
39389
39551
  "kind": "ENUM",
@@ -40157,6 +40319,26 @@
40157
40319
  "isDeprecated": false,
40158
40320
  "deprecationReason": null
40159
40321
  },
40322
+ {
40323
+ "name": "minimumSpend",
40324
+ "description": "Minimum spend limit",
40325
+ "args": [],
40326
+ "type": {
40327
+ "kind": "LIST",
40328
+ "name": null,
40329
+ "ofType": {
40330
+ "kind": "NON_NULL",
40331
+ "name": null,
40332
+ "ofType": {
40333
+ "kind": "OBJECT",
40334
+ "name": "MinimumSpendChange",
40335
+ "ofType": null
40336
+ }
40337
+ }
40338
+ },
40339
+ "isDeprecated": false,
40340
+ "deprecationReason": null
40341
+ },
40160
40342
  {
40161
40343
  "name": "overagePrices",
40162
40344
  "description": null,
@@ -41480,7 +41662,7 @@
41480
41662
  "fields": [
41481
41663
  {
41482
41664
  "name": "after",
41483
- "description": null,
41665
+ "description": "The value after the change",
41484
41666
  "args": [],
41485
41667
  "type": {
41486
41668
  "kind": "OBJECT",
@@ -41492,7 +41674,7 @@
41492
41674
  },
41493
41675
  {
41494
41676
  "name": "before",
41495
- "description": null,
41677
+ "description": "The value before the change",
41496
41678
  "args": [],
41497
41679
  "type": {
41498
41680
  "kind": "OBJECT",
@@ -41504,7 +41686,7 @@
41504
41686
  },
41505
41687
  {
41506
41688
  "name": "changeType",
41507
- "description": null,
41689
+ "description": "The change type",
41508
41690
  "args": [],
41509
41691
  "type": {
41510
41692
  "kind": "ENUM",
@@ -44613,7 +44795,7 @@
44613
44795
  "fields": [
44614
44796
  {
44615
44797
  "name": "after",
44616
- "description": null,
44798
+ "description": "The value after the change",
44617
44799
  "args": [],
44618
44800
  "type": {
44619
44801
  "kind": "OBJECT",
@@ -44625,7 +44807,7 @@
44625
44807
  },
44626
44808
  {
44627
44809
  "name": "before",
44628
- "description": null,
44810
+ "description": "The value before the change",
44629
44811
  "args": [],
44630
44812
  "type": {
44631
44813
  "kind": "OBJECT",
@@ -44637,7 +44819,7 @@
44637
44819
  },
44638
44820
  {
44639
44821
  "name": "changeType",
44640
- "description": null,
44822
+ "description": "The change type",
44641
44823
  "args": [],
44642
44824
  "type": {
44643
44825
  "kind": "ENUM",
@@ -44675,6 +44857,26 @@
44675
44857
  "isDeprecated": false,
44676
44858
  "deprecationReason": null
44677
44859
  },
44860
+ {
44861
+ "name": "minimumSpend",
44862
+ "description": "The minimum spend configuration per each billing period",
44863
+ "type": {
44864
+ "kind": "LIST",
44865
+ "name": null,
44866
+ "ofType": {
44867
+ "kind": "NON_NULL",
44868
+ "name": null,
44869
+ "ofType": {
44870
+ "kind": "INPUT_OBJECT",
44871
+ "name": "MinimumSpendInput",
44872
+ "ofType": null
44873
+ }
44874
+ }
44875
+ },
44876
+ "defaultValue": null,
44877
+ "isDeprecated": false,
44878
+ "deprecationReason": null
44879
+ },
44678
44880
  {
44679
44881
  "name": "overageBillingPeriod",
44680
44882
  "description": null,
@@ -47352,6 +47554,26 @@
47352
47554
  "isDeprecated": false,
47353
47555
  "deprecationReason": null
47354
47556
  },
47557
+ {
47558
+ "name": "minimumSpend",
47559
+ "description": "Minimum spend configuration",
47560
+ "args": [],
47561
+ "type": {
47562
+ "kind": "LIST",
47563
+ "name": null,
47564
+ "ofType": {
47565
+ "kind": "NON_NULL",
47566
+ "name": null,
47567
+ "ofType": {
47568
+ "kind": "OBJECT",
47569
+ "name": "MinimumSpend",
47570
+ "ofType": null
47571
+ }
47572
+ }
47573
+ },
47574
+ "isDeprecated": false,
47575
+ "deprecationReason": null
47576
+ },
47355
47577
  {
47356
47578
  "name": "overageBillingPeriod",
47357
47579
  "description": null,
@@ -49971,6 +50193,45 @@
49971
50193
  "enumValues": null,
49972
50194
  "possibleTypes": null
49973
50195
  },
50196
+ {
50197
+ "kind": "INPUT_OBJECT",
50198
+ "name": "PreviewNextInvoiceInput",
50199
+ "description": "Input to preview the next invoice for a subscription",
50200
+ "fields": null,
50201
+ "inputFields": [
50202
+ {
50203
+ "name": "environmentId",
50204
+ "description": "The environment id of the subscription to preview",
50205
+ "type": {
50206
+ "kind": "SCALAR",
50207
+ "name": "String",
50208
+ "ofType": null
50209
+ },
50210
+ "defaultValue": null,
50211
+ "isDeprecated": false,
50212
+ "deprecationReason": null
50213
+ },
50214
+ {
50215
+ "name": "subscriptionId",
50216
+ "description": "The subscription id to preview",
50217
+ "type": {
50218
+ "kind": "NON_NULL",
50219
+ "name": null,
50220
+ "ofType": {
50221
+ "kind": "SCALAR",
50222
+ "name": "String",
50223
+ "ofType": null
50224
+ }
50225
+ },
50226
+ "defaultValue": null,
50227
+ "isDeprecated": false,
50228
+ "deprecationReason": null
50229
+ }
50230
+ ],
50231
+ "interfaces": null,
50232
+ "enumValues": null,
50233
+ "possibleTypes": null
50234
+ },
49974
50235
  {
49975
50236
  "kind": "INPUT_OBJECT",
49976
50237
  "name": "PreviewSubscriptionInput",
@@ -62122,7 +62383,7 @@
62122
62383
  "fields": [
62123
62384
  {
62124
62385
  "name": "after",
62125
- "description": null,
62386
+ "description": "The value after the change",
62126
62387
  "args": [],
62127
62388
  "type": {
62128
62389
  "kind": "SCALAR",
@@ -62134,7 +62395,7 @@
62134
62395
  },
62135
62396
  {
62136
62397
  "name": "before",
62137
- "description": null,
62398
+ "description": "The value before the change",
62138
62399
  "args": [],
62139
62400
  "type": {
62140
62401
  "kind": "SCALAR",
@@ -62146,7 +62407,7 @@
62146
62407
  },
62147
62408
  {
62148
62409
  "name": "changeType",
62149
- "description": null,
62410
+ "description": "The change type",
62150
62411
  "args": [],
62151
62412
  "type": {
62152
62413
  "kind": "ENUM",
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.125.0"
4
+ VERSION = "1.128.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: 1.125.0
4
+ version: 1.128.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg