stigg-api-client 0.568.0 → 0.569.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/stigg/generated/operations.rb +53 -34
- data/lib/stigg/generated/schema.json +255 -220
- data/lib/stigg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 977992f787a4ff1ffbd378b288148b68a873c4408faa117a2fb65cfb22e322f8
|
|
4
|
+
data.tar.gz: 49a1837990c4f97e64a7b48de80ec3f6c72cac1dc9a4d490f0c5df5d2060ed04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32507d93063c12a1f287e3b270be446a829b1ddd41a0fd8f5cfe400862c67e6ef1d9c5930af643c89d8edcbd9b27c748acc07d92d0d6cb8b7e911deecad0fdeb
|
|
7
|
+
data.tar.gz: 5093fbe967ceaa800dfaf4f36f008f77793e46b268bf1d2ed4a009d409ecb5a4cbe92cdff0025725ec805924b3a737f62d77f620bc39779ad346b15e12ab7d9b
|
data/Gemfile.lock
CHANGED
|
@@ -521,8 +521,44 @@ module Stigg
|
|
|
521
521
|
}
|
|
522
522
|
GRAPHQL
|
|
523
523
|
|
|
524
|
-
|
|
525
|
-
fragment
|
|
524
|
+
SubscriptionPreviewInvoiceFragment = <<~GRAPHQL
|
|
525
|
+
fragment SubscriptionPreviewInvoiceFragment on SubscriptionPreviewInvoice {
|
|
526
|
+
total {
|
|
527
|
+
amount
|
|
528
|
+
currency
|
|
529
|
+
}
|
|
530
|
+
subTotal {
|
|
531
|
+
amount
|
|
532
|
+
currency
|
|
533
|
+
}
|
|
534
|
+
totalExcludingTax {
|
|
535
|
+
amount
|
|
536
|
+
currency
|
|
537
|
+
}
|
|
538
|
+
tax {
|
|
539
|
+
amount
|
|
540
|
+
currency
|
|
541
|
+
}
|
|
542
|
+
discount {
|
|
543
|
+
amount
|
|
544
|
+
currency
|
|
545
|
+
}
|
|
546
|
+
taxDetails {
|
|
547
|
+
displayName
|
|
548
|
+
percentage
|
|
549
|
+
inclusive
|
|
550
|
+
}
|
|
551
|
+
discountDetails {
|
|
552
|
+
type
|
|
553
|
+
value
|
|
554
|
+
durationType
|
|
555
|
+
durationInMonths
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
GRAPHQL
|
|
559
|
+
|
|
560
|
+
ImmediateSubscriptionPreviewInvoiceFragment = <<~GRAPHQL
|
|
561
|
+
fragment ImmediateSubscriptionPreviewInvoiceFragment on ImmediateSubscriptionPreviewInvoice {
|
|
526
562
|
total {
|
|
527
563
|
amount
|
|
528
564
|
currency
|
|
@@ -570,6 +606,7 @@ module Stigg
|
|
|
570
606
|
}
|
|
571
607
|
proration {
|
|
572
608
|
prorationDate
|
|
609
|
+
hasProrations
|
|
573
610
|
credit {
|
|
574
611
|
amount
|
|
575
612
|
currency
|
|
@@ -583,44 +620,24 @@ module Stigg
|
|
|
583
620
|
currency
|
|
584
621
|
}
|
|
585
622
|
}
|
|
623
|
+
}
|
|
624
|
+
GRAPHQL
|
|
625
|
+
|
|
626
|
+
SubscriptionPreviewV2Fragment = <<~GRAPHQL
|
|
627
|
+
fragment SubscriptionPreviewV2Fragment on SubscriptionPreviewV2 {
|
|
628
|
+
immediateInvoice {
|
|
629
|
+
...ImmediateSubscriptionPreviewInvoiceFragment
|
|
630
|
+
}
|
|
586
631
|
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
amount
|
|
590
|
-
currency
|
|
591
|
-
}
|
|
592
|
-
totalExcludingTax {
|
|
593
|
-
amount
|
|
594
|
-
currency
|
|
595
|
-
}
|
|
596
|
-
total {
|
|
597
|
-
amount
|
|
598
|
-
currency
|
|
599
|
-
}
|
|
600
|
-
tax {
|
|
601
|
-
amount
|
|
602
|
-
currency
|
|
603
|
-
}
|
|
604
|
-
discount {
|
|
605
|
-
amount
|
|
606
|
-
currency
|
|
607
|
-
}
|
|
608
|
-
taxDetails {
|
|
609
|
-
displayName
|
|
610
|
-
percentage
|
|
611
|
-
inclusive
|
|
612
|
-
}
|
|
613
|
-
discountDetails {
|
|
614
|
-
type
|
|
615
|
-
value
|
|
616
|
-
durationType
|
|
617
|
-
durationInMonths
|
|
618
|
-
}
|
|
632
|
+
recurringInvoice {
|
|
633
|
+
...SubscriptionPreviewInvoiceFragment
|
|
619
634
|
}
|
|
635
|
+
|
|
620
636
|
billingPeriodRange {
|
|
621
637
|
start
|
|
622
638
|
end
|
|
623
639
|
}
|
|
640
|
+
|
|
624
641
|
isPlanDowngrade
|
|
625
642
|
hasScheduledUpdates
|
|
626
643
|
}
|
|
@@ -1346,6 +1363,8 @@ module Stigg
|
|
|
1346
1363
|
}
|
|
1347
1364
|
}
|
|
1348
1365
|
#{Fragment::SubscriptionPreviewV2Fragment}
|
|
1366
|
+
#{Fragment::ImmediateSubscriptionPreviewInvoiceFragment}
|
|
1367
|
+
#{Fragment::SubscriptionPreviewInvoiceFragment}
|
|
1349
1368
|
GRAPHQL
|
|
1350
1369
|
|
|
1351
1370
|
CancelSubscriptionUpdates = <<~GRAPHQL
|
|
@@ -27395,6 +27395,137 @@
|
|
|
27395
27395
|
"enumValues": null,
|
|
27396
27396
|
"possibleTypes": null
|
|
27397
27397
|
},
|
|
27398
|
+
{
|
|
27399
|
+
"kind": "OBJECT",
|
|
27400
|
+
"name": "ImmediateSubscriptionPreviewInvoice",
|
|
27401
|
+
"description": null,
|
|
27402
|
+
"fields": [
|
|
27403
|
+
{
|
|
27404
|
+
"name": "credits",
|
|
27405
|
+
"description": null,
|
|
27406
|
+
"args": [],
|
|
27407
|
+
"type": {
|
|
27408
|
+
"kind": "OBJECT",
|
|
27409
|
+
"name": "SubscriptionPreviewCredits",
|
|
27410
|
+
"ofType": null
|
|
27411
|
+
},
|
|
27412
|
+
"isDeprecated": false,
|
|
27413
|
+
"deprecationReason": null
|
|
27414
|
+
},
|
|
27415
|
+
{
|
|
27416
|
+
"name": "discount",
|
|
27417
|
+
"description": null,
|
|
27418
|
+
"args": [],
|
|
27419
|
+
"type": {
|
|
27420
|
+
"kind": "OBJECT",
|
|
27421
|
+
"name": "Money",
|
|
27422
|
+
"ofType": null
|
|
27423
|
+
},
|
|
27424
|
+
"isDeprecated": false,
|
|
27425
|
+
"deprecationReason": null
|
|
27426
|
+
},
|
|
27427
|
+
{
|
|
27428
|
+
"name": "discountDetails",
|
|
27429
|
+
"description": null,
|
|
27430
|
+
"args": [],
|
|
27431
|
+
"type": {
|
|
27432
|
+
"kind": "OBJECT",
|
|
27433
|
+
"name": "SubscriptionPreviewDiscount",
|
|
27434
|
+
"ofType": null
|
|
27435
|
+
},
|
|
27436
|
+
"isDeprecated": false,
|
|
27437
|
+
"deprecationReason": null
|
|
27438
|
+
},
|
|
27439
|
+
{
|
|
27440
|
+
"name": "proration",
|
|
27441
|
+
"description": null,
|
|
27442
|
+
"args": [],
|
|
27443
|
+
"type": {
|
|
27444
|
+
"kind": "OBJECT",
|
|
27445
|
+
"name": "SubscriptionPreviewProrations",
|
|
27446
|
+
"ofType": null
|
|
27447
|
+
},
|
|
27448
|
+
"isDeprecated": false,
|
|
27449
|
+
"deprecationReason": null
|
|
27450
|
+
},
|
|
27451
|
+
{
|
|
27452
|
+
"name": "subTotal",
|
|
27453
|
+
"description": null,
|
|
27454
|
+
"args": [],
|
|
27455
|
+
"type": {
|
|
27456
|
+
"kind": "NON_NULL",
|
|
27457
|
+
"name": null,
|
|
27458
|
+
"ofType": {
|
|
27459
|
+
"kind": "OBJECT",
|
|
27460
|
+
"name": "Money",
|
|
27461
|
+
"ofType": null
|
|
27462
|
+
}
|
|
27463
|
+
},
|
|
27464
|
+
"isDeprecated": false,
|
|
27465
|
+
"deprecationReason": null
|
|
27466
|
+
},
|
|
27467
|
+
{
|
|
27468
|
+
"name": "tax",
|
|
27469
|
+
"description": null,
|
|
27470
|
+
"args": [],
|
|
27471
|
+
"type": {
|
|
27472
|
+
"kind": "OBJECT",
|
|
27473
|
+
"name": "Money",
|
|
27474
|
+
"ofType": null
|
|
27475
|
+
},
|
|
27476
|
+
"isDeprecated": false,
|
|
27477
|
+
"deprecationReason": null
|
|
27478
|
+
},
|
|
27479
|
+
{
|
|
27480
|
+
"name": "taxDetails",
|
|
27481
|
+
"description": null,
|
|
27482
|
+
"args": [],
|
|
27483
|
+
"type": {
|
|
27484
|
+
"kind": "OBJECT",
|
|
27485
|
+
"name": "SubscriptionPreviewTaxDetails",
|
|
27486
|
+
"ofType": null
|
|
27487
|
+
},
|
|
27488
|
+
"isDeprecated": false,
|
|
27489
|
+
"deprecationReason": null
|
|
27490
|
+
},
|
|
27491
|
+
{
|
|
27492
|
+
"name": "total",
|
|
27493
|
+
"description": null,
|
|
27494
|
+
"args": [],
|
|
27495
|
+
"type": {
|
|
27496
|
+
"kind": "NON_NULL",
|
|
27497
|
+
"name": null,
|
|
27498
|
+
"ofType": {
|
|
27499
|
+
"kind": "OBJECT",
|
|
27500
|
+
"name": "Money",
|
|
27501
|
+
"ofType": null
|
|
27502
|
+
}
|
|
27503
|
+
},
|
|
27504
|
+
"isDeprecated": false,
|
|
27505
|
+
"deprecationReason": null
|
|
27506
|
+
},
|
|
27507
|
+
{
|
|
27508
|
+
"name": "totalExcludingTax",
|
|
27509
|
+
"description": null,
|
|
27510
|
+
"args": [],
|
|
27511
|
+
"type": {
|
|
27512
|
+
"kind": "NON_NULL",
|
|
27513
|
+
"name": null,
|
|
27514
|
+
"ofType": {
|
|
27515
|
+
"kind": "OBJECT",
|
|
27516
|
+
"name": "Money",
|
|
27517
|
+
"ofType": null
|
|
27518
|
+
}
|
|
27519
|
+
},
|
|
27520
|
+
"isDeprecated": false,
|
|
27521
|
+
"deprecationReason": null
|
|
27522
|
+
}
|
|
27523
|
+
],
|
|
27524
|
+
"inputFields": null,
|
|
27525
|
+
"interfaces": [],
|
|
27526
|
+
"enumValues": null,
|
|
27527
|
+
"possibleTypes": null
|
|
27528
|
+
},
|
|
27398
27529
|
{
|
|
27399
27530
|
"kind": "OBJECT",
|
|
27400
27531
|
"name": "ImportAlreadyInProgressError",
|
|
@@ -51885,117 +52016,6 @@
|
|
|
51885
52016
|
"enumValues": null,
|
|
51886
52017
|
"possibleTypes": null
|
|
51887
52018
|
},
|
|
51888
|
-
{
|
|
51889
|
-
"kind": "OBJECT",
|
|
51890
|
-
"name": "RecurringSubscriptionPreview",
|
|
51891
|
-
"description": null,
|
|
51892
|
-
"fields": [
|
|
51893
|
-
{
|
|
51894
|
-
"name": "discount",
|
|
51895
|
-
"description": null,
|
|
51896
|
-
"args": [],
|
|
51897
|
-
"type": {
|
|
51898
|
-
"kind": "OBJECT",
|
|
51899
|
-
"name": "Money",
|
|
51900
|
-
"ofType": null
|
|
51901
|
-
},
|
|
51902
|
-
"isDeprecated": false,
|
|
51903
|
-
"deprecationReason": null
|
|
51904
|
-
},
|
|
51905
|
-
{
|
|
51906
|
-
"name": "discountDetails",
|
|
51907
|
-
"description": null,
|
|
51908
|
-
"args": [],
|
|
51909
|
-
"type": {
|
|
51910
|
-
"kind": "OBJECT",
|
|
51911
|
-
"name": "SubscriptionPreviewDiscount",
|
|
51912
|
-
"ofType": null
|
|
51913
|
-
},
|
|
51914
|
-
"isDeprecated": false,
|
|
51915
|
-
"deprecationReason": null
|
|
51916
|
-
},
|
|
51917
|
-
{
|
|
51918
|
-
"name": "subTotal",
|
|
51919
|
-
"description": null,
|
|
51920
|
-
"args": [],
|
|
51921
|
-
"type": {
|
|
51922
|
-
"kind": "NON_NULL",
|
|
51923
|
-
"name": null,
|
|
51924
|
-
"ofType": {
|
|
51925
|
-
"kind": "OBJECT",
|
|
51926
|
-
"name": "Money",
|
|
51927
|
-
"ofType": null
|
|
51928
|
-
}
|
|
51929
|
-
},
|
|
51930
|
-
"isDeprecated": false,
|
|
51931
|
-
"deprecationReason": null
|
|
51932
|
-
},
|
|
51933
|
-
{
|
|
51934
|
-
"name": "tax",
|
|
51935
|
-
"description": null,
|
|
51936
|
-
"args": [],
|
|
51937
|
-
"type": {
|
|
51938
|
-
"kind": "NON_NULL",
|
|
51939
|
-
"name": null,
|
|
51940
|
-
"ofType": {
|
|
51941
|
-
"kind": "OBJECT",
|
|
51942
|
-
"name": "Money",
|
|
51943
|
-
"ofType": null
|
|
51944
|
-
}
|
|
51945
|
-
},
|
|
51946
|
-
"isDeprecated": false,
|
|
51947
|
-
"deprecationReason": null
|
|
51948
|
-
},
|
|
51949
|
-
{
|
|
51950
|
-
"name": "taxDetails",
|
|
51951
|
-
"description": null,
|
|
51952
|
-
"args": [],
|
|
51953
|
-
"type": {
|
|
51954
|
-
"kind": "OBJECT",
|
|
51955
|
-
"name": "SubscriptionPreviewTaxDetails",
|
|
51956
|
-
"ofType": null
|
|
51957
|
-
},
|
|
51958
|
-
"isDeprecated": false,
|
|
51959
|
-
"deprecationReason": null
|
|
51960
|
-
},
|
|
51961
|
-
{
|
|
51962
|
-
"name": "total",
|
|
51963
|
-
"description": null,
|
|
51964
|
-
"args": [],
|
|
51965
|
-
"type": {
|
|
51966
|
-
"kind": "NON_NULL",
|
|
51967
|
-
"name": null,
|
|
51968
|
-
"ofType": {
|
|
51969
|
-
"kind": "OBJECT",
|
|
51970
|
-
"name": "Money",
|
|
51971
|
-
"ofType": null
|
|
51972
|
-
}
|
|
51973
|
-
},
|
|
51974
|
-
"isDeprecated": false,
|
|
51975
|
-
"deprecationReason": null
|
|
51976
|
-
},
|
|
51977
|
-
{
|
|
51978
|
-
"name": "totalExcludingTax",
|
|
51979
|
-
"description": null,
|
|
51980
|
-
"args": [],
|
|
51981
|
-
"type": {
|
|
51982
|
-
"kind": "NON_NULL",
|
|
51983
|
-
"name": null,
|
|
51984
|
-
"ofType": {
|
|
51985
|
-
"kind": "OBJECT",
|
|
51986
|
-
"name": "Money",
|
|
51987
|
-
"ofType": null
|
|
51988
|
-
}
|
|
51989
|
-
},
|
|
51990
|
-
"isDeprecated": false,
|
|
51991
|
-
"deprecationReason": null
|
|
51992
|
-
}
|
|
51993
|
-
],
|
|
51994
|
-
"inputFields": null,
|
|
51995
|
-
"interfaces": [],
|
|
51996
|
-
"enumValues": null,
|
|
51997
|
-
"possibleTypes": null
|
|
51998
|
-
},
|
|
51999
52019
|
{
|
|
52000
52020
|
"kind": "INPUT_OBJECT",
|
|
52001
52021
|
"name": "RemoveBasePlanFromPlanInput",
|
|
@@ -59355,43 +59375,35 @@
|
|
|
59355
59375
|
},
|
|
59356
59376
|
{
|
|
59357
59377
|
"kind": "OBJECT",
|
|
59358
|
-
"name": "
|
|
59378
|
+
"name": "SubscriptionPreviewInvoice",
|
|
59359
59379
|
"description": null,
|
|
59360
59380
|
"fields": [
|
|
59361
59381
|
{
|
|
59362
|
-
"name": "
|
|
59382
|
+
"name": "discount",
|
|
59363
59383
|
"description": null,
|
|
59364
59384
|
"args": [],
|
|
59365
59385
|
"type": {
|
|
59366
|
-
"kind": "
|
|
59367
|
-
"name":
|
|
59368
|
-
"ofType":
|
|
59369
|
-
"kind": "OBJECT",
|
|
59370
|
-
"name": "Money",
|
|
59371
|
-
"ofType": null
|
|
59372
|
-
}
|
|
59386
|
+
"kind": "OBJECT",
|
|
59387
|
+
"name": "Money",
|
|
59388
|
+
"ofType": null
|
|
59373
59389
|
},
|
|
59374
59390
|
"isDeprecated": false,
|
|
59375
59391
|
"deprecationReason": null
|
|
59376
59392
|
},
|
|
59377
59393
|
{
|
|
59378
|
-
"name": "
|
|
59394
|
+
"name": "discountDetails",
|
|
59379
59395
|
"description": null,
|
|
59380
59396
|
"args": [],
|
|
59381
59397
|
"type": {
|
|
59382
|
-
"kind": "
|
|
59383
|
-
"name":
|
|
59384
|
-
"ofType":
|
|
59385
|
-
"kind": "OBJECT",
|
|
59386
|
-
"name": "Money",
|
|
59387
|
-
"ofType": null
|
|
59388
|
-
}
|
|
59398
|
+
"kind": "OBJECT",
|
|
59399
|
+
"name": "SubscriptionPreviewDiscount",
|
|
59400
|
+
"ofType": null
|
|
59389
59401
|
},
|
|
59390
59402
|
"isDeprecated": false,
|
|
59391
59403
|
"deprecationReason": null
|
|
59392
59404
|
},
|
|
59393
59405
|
{
|
|
59394
|
-
"name": "
|
|
59406
|
+
"name": "subTotal",
|
|
59395
59407
|
"description": null,
|
|
59396
59408
|
"args": [],
|
|
59397
59409
|
"type": {
|
|
@@ -59407,58 +59419,39 @@
|
|
|
59407
59419
|
"deprecationReason": null
|
|
59408
59420
|
},
|
|
59409
59421
|
{
|
|
59410
|
-
"name": "
|
|
59422
|
+
"name": "tax",
|
|
59411
59423
|
"description": null,
|
|
59412
59424
|
"args": [],
|
|
59413
59425
|
"type": {
|
|
59414
|
-
"kind": "
|
|
59415
|
-
"name":
|
|
59416
|
-
"ofType":
|
|
59417
|
-
"kind": "SCALAR",
|
|
59418
|
-
"name": "DateTime",
|
|
59419
|
-
"ofType": null
|
|
59420
|
-
}
|
|
59426
|
+
"kind": "OBJECT",
|
|
59427
|
+
"name": "Money",
|
|
59428
|
+
"ofType": null
|
|
59421
59429
|
},
|
|
59422
59430
|
"isDeprecated": false,
|
|
59423
59431
|
"deprecationReason": null
|
|
59424
|
-
}
|
|
59425
|
-
],
|
|
59426
|
-
"inputFields": null,
|
|
59427
|
-
"interfaces": [],
|
|
59428
|
-
"enumValues": null,
|
|
59429
|
-
"possibleTypes": null
|
|
59430
|
-
},
|
|
59431
|
-
{
|
|
59432
|
-
"kind": "OBJECT",
|
|
59433
|
-
"name": "SubscriptionPreviewTaxDetails",
|
|
59434
|
-
"description": null,
|
|
59435
|
-
"fields": [
|
|
59432
|
+
},
|
|
59436
59433
|
{
|
|
59437
|
-
"name": "
|
|
59434
|
+
"name": "taxDetails",
|
|
59438
59435
|
"description": null,
|
|
59439
59436
|
"args": [],
|
|
59440
59437
|
"type": {
|
|
59441
|
-
"kind": "
|
|
59442
|
-
"name":
|
|
59443
|
-
"ofType":
|
|
59444
|
-
"kind": "SCALAR",
|
|
59445
|
-
"name": "String",
|
|
59446
|
-
"ofType": null
|
|
59447
|
-
}
|
|
59438
|
+
"kind": "OBJECT",
|
|
59439
|
+
"name": "SubscriptionPreviewTaxDetails",
|
|
59440
|
+
"ofType": null
|
|
59448
59441
|
},
|
|
59449
59442
|
"isDeprecated": false,
|
|
59450
59443
|
"deprecationReason": null
|
|
59451
59444
|
},
|
|
59452
59445
|
{
|
|
59453
|
-
"name": "
|
|
59446
|
+
"name": "total",
|
|
59454
59447
|
"description": null,
|
|
59455
59448
|
"args": [],
|
|
59456
59449
|
"type": {
|
|
59457
59450
|
"kind": "NON_NULL",
|
|
59458
59451
|
"name": null,
|
|
59459
59452
|
"ofType": {
|
|
59460
|
-
"kind": "
|
|
59461
|
-
"name": "
|
|
59453
|
+
"kind": "OBJECT",
|
|
59454
|
+
"name": "Money",
|
|
59462
59455
|
"ofType": null
|
|
59463
59456
|
}
|
|
59464
59457
|
},
|
|
@@ -59466,15 +59459,15 @@
|
|
|
59466
59459
|
"deprecationReason": null
|
|
59467
59460
|
},
|
|
59468
59461
|
{
|
|
59469
|
-
"name": "
|
|
59462
|
+
"name": "totalExcludingTax",
|
|
59470
59463
|
"description": null,
|
|
59471
59464
|
"args": [],
|
|
59472
59465
|
"type": {
|
|
59473
59466
|
"kind": "NON_NULL",
|
|
59474
59467
|
"name": null,
|
|
59475
59468
|
"ofType": {
|
|
59476
|
-
"kind": "
|
|
59477
|
-
"name": "
|
|
59469
|
+
"kind": "OBJECT",
|
|
59470
|
+
"name": "Money",
|
|
59478
59471
|
"ofType": null
|
|
59479
59472
|
}
|
|
59480
59473
|
},
|
|
@@ -59489,11 +59482,11 @@
|
|
|
59489
59482
|
},
|
|
59490
59483
|
{
|
|
59491
59484
|
"kind": "OBJECT",
|
|
59492
|
-
"name": "
|
|
59485
|
+
"name": "SubscriptionPreviewProrations",
|
|
59493
59486
|
"description": null,
|
|
59494
59487
|
"fields": [
|
|
59495
59488
|
{
|
|
59496
|
-
"name": "
|
|
59489
|
+
"name": "credit",
|
|
59497
59490
|
"description": null,
|
|
59498
59491
|
"args": [],
|
|
59499
59492
|
"type": {
|
|
@@ -59501,7 +59494,7 @@
|
|
|
59501
59494
|
"name": null,
|
|
59502
59495
|
"ofType": {
|
|
59503
59496
|
"kind": "OBJECT",
|
|
59504
|
-
"name": "
|
|
59497
|
+
"name": "Money",
|
|
59505
59498
|
"ofType": null
|
|
59506
59499
|
}
|
|
59507
59500
|
},
|
|
@@ -59509,91 +59502,137 @@
|
|
|
59509
59502
|
"deprecationReason": null
|
|
59510
59503
|
},
|
|
59511
59504
|
{
|
|
59512
|
-
"name": "
|
|
59505
|
+
"name": "debit",
|
|
59513
59506
|
"description": null,
|
|
59514
59507
|
"args": [],
|
|
59515
59508
|
"type": {
|
|
59516
|
-
"kind": "
|
|
59517
|
-
"name":
|
|
59518
|
-
"ofType":
|
|
59509
|
+
"kind": "NON_NULL",
|
|
59510
|
+
"name": null,
|
|
59511
|
+
"ofType": {
|
|
59512
|
+
"kind": "OBJECT",
|
|
59513
|
+
"name": "Money",
|
|
59514
|
+
"ofType": null
|
|
59515
|
+
}
|
|
59519
59516
|
},
|
|
59520
59517
|
"isDeprecated": false,
|
|
59521
59518
|
"deprecationReason": null
|
|
59522
59519
|
},
|
|
59523
59520
|
{
|
|
59524
|
-
"name": "
|
|
59521
|
+
"name": "hasProrations",
|
|
59525
59522
|
"description": null,
|
|
59526
59523
|
"args": [],
|
|
59527
59524
|
"type": {
|
|
59528
|
-
"kind": "
|
|
59529
|
-
"name": "
|
|
59525
|
+
"kind": "SCALAR",
|
|
59526
|
+
"name": "Boolean",
|
|
59530
59527
|
"ofType": null
|
|
59531
59528
|
},
|
|
59532
59529
|
"isDeprecated": false,
|
|
59533
59530
|
"deprecationReason": null
|
|
59534
59531
|
},
|
|
59535
59532
|
{
|
|
59536
|
-
"name": "
|
|
59533
|
+
"name": "netAmount",
|
|
59537
59534
|
"description": null,
|
|
59538
59535
|
"args": [],
|
|
59539
59536
|
"type": {
|
|
59540
|
-
"kind": "
|
|
59541
|
-
"name":
|
|
59542
|
-
"ofType":
|
|
59537
|
+
"kind": "NON_NULL",
|
|
59538
|
+
"name": null,
|
|
59539
|
+
"ofType": {
|
|
59540
|
+
"kind": "OBJECT",
|
|
59541
|
+
"name": "Money",
|
|
59542
|
+
"ofType": null
|
|
59543
|
+
}
|
|
59543
59544
|
},
|
|
59544
59545
|
"isDeprecated": false,
|
|
59545
59546
|
"deprecationReason": null
|
|
59546
59547
|
},
|
|
59547
59548
|
{
|
|
59548
|
-
"name": "
|
|
59549
|
+
"name": "prorationDate",
|
|
59549
59550
|
"description": null,
|
|
59550
59551
|
"args": [],
|
|
59551
59552
|
"type": {
|
|
59552
|
-
"kind": "
|
|
59553
|
-
"name":
|
|
59554
|
-
"ofType":
|
|
59553
|
+
"kind": "NON_NULL",
|
|
59554
|
+
"name": null,
|
|
59555
|
+
"ofType": {
|
|
59556
|
+
"kind": "SCALAR",
|
|
59557
|
+
"name": "DateTime",
|
|
59558
|
+
"ofType": null
|
|
59559
|
+
}
|
|
59555
59560
|
},
|
|
59556
59561
|
"isDeprecated": false,
|
|
59557
59562
|
"deprecationReason": null
|
|
59558
|
-
}
|
|
59563
|
+
}
|
|
59564
|
+
],
|
|
59565
|
+
"inputFields": null,
|
|
59566
|
+
"interfaces": [],
|
|
59567
|
+
"enumValues": null,
|
|
59568
|
+
"possibleTypes": null
|
|
59569
|
+
},
|
|
59570
|
+
{
|
|
59571
|
+
"kind": "OBJECT",
|
|
59572
|
+
"name": "SubscriptionPreviewTaxDetails",
|
|
59573
|
+
"description": null,
|
|
59574
|
+
"fields": [
|
|
59559
59575
|
{
|
|
59560
|
-
"name": "
|
|
59576
|
+
"name": "displayName",
|
|
59561
59577
|
"description": null,
|
|
59562
59578
|
"args": [],
|
|
59563
59579
|
"type": {
|
|
59564
|
-
"kind": "
|
|
59565
|
-
"name":
|
|
59566
|
-
"ofType":
|
|
59580
|
+
"kind": "NON_NULL",
|
|
59581
|
+
"name": null,
|
|
59582
|
+
"ofType": {
|
|
59583
|
+
"kind": "SCALAR",
|
|
59584
|
+
"name": "String",
|
|
59585
|
+
"ofType": null
|
|
59586
|
+
}
|
|
59567
59587
|
},
|
|
59568
59588
|
"isDeprecated": false,
|
|
59569
59589
|
"deprecationReason": null
|
|
59570
59590
|
},
|
|
59571
59591
|
{
|
|
59572
|
-
"name": "
|
|
59592
|
+
"name": "inclusive",
|
|
59573
59593
|
"description": null,
|
|
59574
59594
|
"args": [],
|
|
59575
59595
|
"type": {
|
|
59576
|
-
"kind": "
|
|
59577
|
-
"name":
|
|
59578
|
-
"ofType":
|
|
59596
|
+
"kind": "NON_NULL",
|
|
59597
|
+
"name": null,
|
|
59598
|
+
"ofType": {
|
|
59599
|
+
"kind": "SCALAR",
|
|
59600
|
+
"name": "Boolean",
|
|
59601
|
+
"ofType": null
|
|
59602
|
+
}
|
|
59579
59603
|
},
|
|
59580
59604
|
"isDeprecated": false,
|
|
59581
59605
|
"deprecationReason": null
|
|
59582
59606
|
},
|
|
59583
59607
|
{
|
|
59584
|
-
"name": "
|
|
59608
|
+
"name": "percentage",
|
|
59585
59609
|
"description": null,
|
|
59586
59610
|
"args": [],
|
|
59587
59611
|
"type": {
|
|
59588
|
-
"kind": "
|
|
59589
|
-
"name":
|
|
59590
|
-
"ofType":
|
|
59612
|
+
"kind": "NON_NULL",
|
|
59613
|
+
"name": null,
|
|
59614
|
+
"ofType": {
|
|
59615
|
+
"kind": "SCALAR",
|
|
59616
|
+
"name": "Float",
|
|
59617
|
+
"ofType": null
|
|
59618
|
+
}
|
|
59591
59619
|
},
|
|
59592
59620
|
"isDeprecated": false,
|
|
59593
59621
|
"deprecationReason": null
|
|
59594
|
-
}
|
|
59622
|
+
}
|
|
59623
|
+
],
|
|
59624
|
+
"inputFields": null,
|
|
59625
|
+
"interfaces": [],
|
|
59626
|
+
"enumValues": null,
|
|
59627
|
+
"possibleTypes": null
|
|
59628
|
+
},
|
|
59629
|
+
{
|
|
59630
|
+
"kind": "OBJECT",
|
|
59631
|
+
"name": "SubscriptionPreviewV2",
|
|
59632
|
+
"description": null,
|
|
59633
|
+
"fields": [
|
|
59595
59634
|
{
|
|
59596
|
-
"name": "
|
|
59635
|
+
"name": "billingPeriodRange",
|
|
59597
59636
|
"description": null,
|
|
59598
59637
|
"args": [],
|
|
59599
59638
|
"type": {
|
|
@@ -59601,7 +59640,7 @@
|
|
|
59601
59640
|
"name": null,
|
|
59602
59641
|
"ofType": {
|
|
59603
59642
|
"kind": "OBJECT",
|
|
59604
|
-
"name": "
|
|
59643
|
+
"name": "DateRange",
|
|
59605
59644
|
"ofType": null
|
|
59606
59645
|
}
|
|
59607
59646
|
},
|
|
@@ -59609,57 +59648,53 @@
|
|
|
59609
59648
|
"deprecationReason": null
|
|
59610
59649
|
},
|
|
59611
59650
|
{
|
|
59612
|
-
"name": "
|
|
59651
|
+
"name": "hasScheduledUpdates",
|
|
59613
59652
|
"description": null,
|
|
59614
59653
|
"args": [],
|
|
59615
59654
|
"type": {
|
|
59616
|
-
"kind": "
|
|
59617
|
-
"name": "
|
|
59655
|
+
"kind": "SCALAR",
|
|
59656
|
+
"name": "Boolean",
|
|
59618
59657
|
"ofType": null
|
|
59619
59658
|
},
|
|
59620
59659
|
"isDeprecated": false,
|
|
59621
59660
|
"deprecationReason": null
|
|
59622
59661
|
},
|
|
59623
59662
|
{
|
|
59624
|
-
"name": "
|
|
59663
|
+
"name": "immediateInvoice",
|
|
59625
59664
|
"description": null,
|
|
59626
59665
|
"args": [],
|
|
59627
59666
|
"type": {
|
|
59628
|
-
"kind": "
|
|
59629
|
-
"name":
|
|
59630
|
-
"ofType":
|
|
59667
|
+
"kind": "NON_NULL",
|
|
59668
|
+
"name": null,
|
|
59669
|
+
"ofType": {
|
|
59670
|
+
"kind": "OBJECT",
|
|
59671
|
+
"name": "ImmediateSubscriptionPreviewInvoice",
|
|
59672
|
+
"ofType": null
|
|
59673
|
+
}
|
|
59631
59674
|
},
|
|
59632
59675
|
"isDeprecated": false,
|
|
59633
59676
|
"deprecationReason": null
|
|
59634
59677
|
},
|
|
59635
59678
|
{
|
|
59636
|
-
"name": "
|
|
59679
|
+
"name": "isPlanDowngrade",
|
|
59637
59680
|
"description": null,
|
|
59638
59681
|
"args": [],
|
|
59639
59682
|
"type": {
|
|
59640
|
-
"kind": "
|
|
59641
|
-
"name":
|
|
59642
|
-
"ofType":
|
|
59643
|
-
"kind": "OBJECT",
|
|
59644
|
-
"name": "Money",
|
|
59645
|
-
"ofType": null
|
|
59646
|
-
}
|
|
59683
|
+
"kind": "SCALAR",
|
|
59684
|
+
"name": "Boolean",
|
|
59685
|
+
"ofType": null
|
|
59647
59686
|
},
|
|
59648
59687
|
"isDeprecated": false,
|
|
59649
59688
|
"deprecationReason": null
|
|
59650
59689
|
},
|
|
59651
59690
|
{
|
|
59652
|
-
"name": "
|
|
59691
|
+
"name": "recurringInvoice",
|
|
59653
59692
|
"description": null,
|
|
59654
59693
|
"args": [],
|
|
59655
59694
|
"type": {
|
|
59656
|
-
"kind": "
|
|
59657
|
-
"name":
|
|
59658
|
-
"ofType":
|
|
59659
|
-
"kind": "OBJECT",
|
|
59660
|
-
"name": "Money",
|
|
59661
|
-
"ofType": null
|
|
59662
|
-
}
|
|
59695
|
+
"kind": "OBJECT",
|
|
59696
|
+
"name": "SubscriptionPreviewInvoice",
|
|
59697
|
+
"ofType": null
|
|
59663
59698
|
},
|
|
59664
59699
|
"isDeprecated": false,
|
|
59665
59700
|
"deprecationReason": null
|
data/lib/stigg/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.569.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stigg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-09-
|
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphlient
|