stigg-api-client 0.548.0 → 0.550.2

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: dc5c7bf1fd6f4b726fd1a0270ddbb18be2c9f1311a595b873f7c653c6eaf505d
4
- data.tar.gz: da8f90c8e772f6fa8e84ab7da163d98c8f67c20f7525128c89a54074b049dd36
3
+ metadata.gz: 85327b38b83d16dae8ce18471c7a912ccdf91a542e90f1e725c36234a37c1bc8
4
+ data.tar.gz: 4a48c7b21dc5b99b7e414d6180f18120f05bde6ae668a5ff90a9ae307d49e839
5
5
  SHA512:
6
- metadata.gz: 785d54313ddb8b05a7b27c361301e74bd1e7f696227002461316e88d5e1e06228025014a14eb2907813ff53da506a19ca2b06e67eae76a9a4e30aaf2065ecb97
7
- data.tar.gz: f5e98045c176f204568c3535bd1a58c197222a6bdf4ad284264d97981b992c8b352bd6ce5b09f60bdf0f9707b58a9e5946d9680e5a53a730c4f43569e08da627
6
+ metadata.gz: d9df2b461152d6f73c2a77b167853b27d560ece4338c195ec0dd13508c8aaaa8eec6ad06562b0b73345fb807ab816bcef8918f2b6ea6898e340187e51c71ace2
7
+ data.tar.gz: a86629411fd49f98245e267a3ae9cf14c519089e5baeec63ba73c0eeb77fd68cfe26e4719501d4f8cb330b13a73e40e0fe880ae28ae8218a74f893e6c9f0cfbb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.548.0)
4
+ stigg-api-client (0.550.2)
5
5
  graphlient (~> 0.7.0)
6
6
 
7
7
  GEM
@@ -746,6 +746,9 @@ module Stigg
746
746
 
747
747
  CheckoutStateFragment = <<~GRAPHQL
748
748
  fragment CheckoutStateFragment on CheckoutState {
749
+ configuration {
750
+ ...CheckoutConfigurationFragment
751
+ }
749
752
  setupSecret
750
753
  customer {
751
754
  ...CustomerFragment
@@ -769,6 +772,29 @@ module Stigg
769
772
  }
770
773
  GRAPHQL
771
774
 
775
+ CheckoutConfigurationFragment = <<~GRAPHQL
776
+ fragment CheckoutConfigurationFragment on CheckoutConfiguration {
777
+ palette {
778
+ primary
779
+ textColor
780
+ backgroundColor
781
+ borderColor
782
+ selectionColor
783
+ summaryBackgroundColor
784
+ __typename
785
+ }
786
+ typography {
787
+ ...TypographyConfigurationFragment
788
+ __typename
789
+ }
790
+ customCss
791
+ content {
792
+ collectPhoneNumber
793
+ }
794
+ __typename
795
+ }
796
+ GRAPHQL
797
+
772
798
  CustomerPortalConfigurationFragment = <<~GRAPHQL
773
799
  fragment CustomerPortalConfigurationFragment on CustomerPortalConfiguration {
774
800
  palette {
@@ -1141,6 +1167,25 @@ module Stigg
1141
1167
  #{Fragment::SlimCustomerFragment}
1142
1168
  GRAPHQL
1143
1169
 
1170
+ SetPromotionalEntitlements = <<~GRAPHQL
1171
+ mutation ($input: SetPromotionalEntitlementsInput!) {
1172
+ setPromotionalEntitlements(input: $input) {
1173
+ ...PromotionalEntitlementFragment
1174
+ }
1175
+ }
1176
+ #{Fragment::PromotionalEntitlementFragment}
1177
+ GRAPHQL
1178
+
1179
+ RevokePromotionalEntitlement = <<~GRAPHQL
1180
+ mutation (
1181
+ $input: RevokePromotionalEntitlementInput!
1182
+ ) {
1183
+ revokePromotionalEntitlement(input: $input) {
1184
+ id
1185
+ }
1186
+ }
1187
+ GRAPHQL
1188
+
1144
1189
  ProvisionSubscription = <<~GRAPHQL
1145
1190
  mutation ($input: ProvisionSubscriptionInput!) {
1146
1191
  provisionSubscription: provisionSubscriptionV2(input: $input) {
@@ -1485,6 +1530,9 @@ module Stigg
1485
1530
  }
1486
1531
  }
1487
1532
  #{Fragment::CheckoutStateFragment}
1533
+ #{Fragment::CheckoutConfigurationFragment}
1534
+ #{Fragment::TypographyConfigurationFragment}
1535
+ #{Fragment::FontVariantFragment}
1488
1536
  #{Fragment::CustomerFragment}
1489
1537
  #{Fragment::SlimCustomerFragment}
1490
1538
  #{Fragment::CouponFragment}
@@ -4399,6 +4399,253 @@
4399
4399
  "enumValues": null,
4400
4400
  "possibleTypes": null
4401
4401
  },
4402
+ {
4403
+ "kind": "OBJECT",
4404
+ "name": "CheckoutColorPalette",
4405
+ "description": null,
4406
+ "fields": [
4407
+ {
4408
+ "name": "backgroundColor",
4409
+ "description": null,
4410
+ "args": [],
4411
+ "type": {
4412
+ "kind": "SCALAR",
4413
+ "name": "String",
4414
+ "ofType": null
4415
+ },
4416
+ "isDeprecated": false,
4417
+ "deprecationReason": null
4418
+ },
4419
+ {
4420
+ "name": "borderColor",
4421
+ "description": null,
4422
+ "args": [],
4423
+ "type": {
4424
+ "kind": "SCALAR",
4425
+ "name": "String",
4426
+ "ofType": null
4427
+ },
4428
+ "isDeprecated": false,
4429
+ "deprecationReason": null
4430
+ },
4431
+ {
4432
+ "name": "primary",
4433
+ "description": null,
4434
+ "args": [],
4435
+ "type": {
4436
+ "kind": "SCALAR",
4437
+ "name": "String",
4438
+ "ofType": null
4439
+ },
4440
+ "isDeprecated": false,
4441
+ "deprecationReason": null
4442
+ },
4443
+ {
4444
+ "name": "selectionColor",
4445
+ "description": null,
4446
+ "args": [],
4447
+ "type": {
4448
+ "kind": "SCALAR",
4449
+ "name": "String",
4450
+ "ofType": null
4451
+ },
4452
+ "isDeprecated": false,
4453
+ "deprecationReason": null
4454
+ },
4455
+ {
4456
+ "name": "summaryBackgroundColor",
4457
+ "description": null,
4458
+ "args": [],
4459
+ "type": {
4460
+ "kind": "SCALAR",
4461
+ "name": "String",
4462
+ "ofType": null
4463
+ },
4464
+ "isDeprecated": false,
4465
+ "deprecationReason": null
4466
+ },
4467
+ {
4468
+ "name": "textColor",
4469
+ "description": null,
4470
+ "args": [],
4471
+ "type": {
4472
+ "kind": "SCALAR",
4473
+ "name": "String",
4474
+ "ofType": null
4475
+ },
4476
+ "isDeprecated": false,
4477
+ "deprecationReason": null
4478
+ }
4479
+ ],
4480
+ "inputFields": null,
4481
+ "interfaces": [],
4482
+ "enumValues": null,
4483
+ "possibleTypes": null
4484
+ },
4485
+ {
4486
+ "kind": "OBJECT",
4487
+ "name": "CheckoutConfiguration",
4488
+ "description": null,
4489
+ "fields": [
4490
+ {
4491
+ "name": "content",
4492
+ "description": null,
4493
+ "args": [],
4494
+ "type": {
4495
+ "kind": "OBJECT",
4496
+ "name": "CheckoutContent",
4497
+ "ofType": null
4498
+ },
4499
+ "isDeprecated": false,
4500
+ "deprecationReason": null
4501
+ },
4502
+ {
4503
+ "name": "customCss",
4504
+ "description": null,
4505
+ "args": [],
4506
+ "type": {
4507
+ "kind": "SCALAR",
4508
+ "name": "String",
4509
+ "ofType": null
4510
+ },
4511
+ "isDeprecated": false,
4512
+ "deprecationReason": null
4513
+ },
4514
+ {
4515
+ "name": "palette",
4516
+ "description": null,
4517
+ "args": [],
4518
+ "type": {
4519
+ "kind": "OBJECT",
4520
+ "name": "CheckoutColorPalette",
4521
+ "ofType": null
4522
+ },
4523
+ "isDeprecated": false,
4524
+ "deprecationReason": null
4525
+ },
4526
+ {
4527
+ "name": "typography",
4528
+ "description": null,
4529
+ "args": [],
4530
+ "type": {
4531
+ "kind": "OBJECT",
4532
+ "name": "TypographyConfiguration",
4533
+ "ofType": null
4534
+ },
4535
+ "isDeprecated": false,
4536
+ "deprecationReason": null
4537
+ }
4538
+ ],
4539
+ "inputFields": null,
4540
+ "interfaces": [],
4541
+ "enumValues": null,
4542
+ "possibleTypes": null
4543
+ },
4544
+ {
4545
+ "kind": "INPUT_OBJECT",
4546
+ "name": "CheckoutConfigurationInput",
4547
+ "description": null,
4548
+ "fields": null,
4549
+ "inputFields": [
4550
+ {
4551
+ "name": "content",
4552
+ "description": null,
4553
+ "type": {
4554
+ "kind": "INPUT_OBJECT",
4555
+ "name": "CheckoutContentInput",
4556
+ "ofType": null
4557
+ },
4558
+ "defaultValue": null,
4559
+ "isDeprecated": false,
4560
+ "deprecationReason": null
4561
+ },
4562
+ {
4563
+ "name": "customCss",
4564
+ "description": null,
4565
+ "type": {
4566
+ "kind": "SCALAR",
4567
+ "name": "String",
4568
+ "ofType": null
4569
+ },
4570
+ "defaultValue": null,
4571
+ "isDeprecated": false,
4572
+ "deprecationReason": null
4573
+ },
4574
+ {
4575
+ "name": "palette",
4576
+ "description": null,
4577
+ "type": {
4578
+ "kind": "INPUT_OBJECT",
4579
+ "name": "CheckoutPaletteInput",
4580
+ "ofType": null
4581
+ },
4582
+ "defaultValue": null,
4583
+ "isDeprecated": false,
4584
+ "deprecationReason": null
4585
+ },
4586
+ {
4587
+ "name": "typography",
4588
+ "description": null,
4589
+ "type": {
4590
+ "kind": "INPUT_OBJECT",
4591
+ "name": "TypographyConfigurationInput",
4592
+ "ofType": null
4593
+ },
4594
+ "defaultValue": null,
4595
+ "isDeprecated": false,
4596
+ "deprecationReason": null
4597
+ }
4598
+ ],
4599
+ "interfaces": null,
4600
+ "enumValues": null,
4601
+ "possibleTypes": null
4602
+ },
4603
+ {
4604
+ "kind": "OBJECT",
4605
+ "name": "CheckoutContent",
4606
+ "description": null,
4607
+ "fields": [
4608
+ {
4609
+ "name": "collectPhoneNumber",
4610
+ "description": null,
4611
+ "args": [],
4612
+ "type": {
4613
+ "kind": "SCALAR",
4614
+ "name": "Boolean",
4615
+ "ofType": null
4616
+ },
4617
+ "isDeprecated": false,
4618
+ "deprecationReason": null
4619
+ }
4620
+ ],
4621
+ "inputFields": null,
4622
+ "interfaces": [],
4623
+ "enumValues": null,
4624
+ "possibleTypes": null
4625
+ },
4626
+ {
4627
+ "kind": "INPUT_OBJECT",
4628
+ "name": "CheckoutContentInput",
4629
+ "description": null,
4630
+ "fields": null,
4631
+ "inputFields": [
4632
+ {
4633
+ "name": "collectPhoneNumber",
4634
+ "description": null,
4635
+ "type": {
4636
+ "kind": "SCALAR",
4637
+ "name": "Boolean",
4638
+ "ofType": null
4639
+ },
4640
+ "defaultValue": null,
4641
+ "isDeprecated": false,
4642
+ "deprecationReason": null
4643
+ }
4644
+ ],
4645
+ "interfaces": null,
4646
+ "enumValues": null,
4647
+ "possibleTypes": null
4648
+ },
4402
4649
  {
4403
4650
  "kind": "OBJECT",
4404
4651
  "name": "CheckoutCredentials",
@@ -4545,6 +4792,89 @@
4545
4792
  "enumValues": null,
4546
4793
  "possibleTypes": null
4547
4794
  },
4795
+ {
4796
+ "kind": "INPUT_OBJECT",
4797
+ "name": "CheckoutPaletteInput",
4798
+ "description": null,
4799
+ "fields": null,
4800
+ "inputFields": [
4801
+ {
4802
+ "name": "backgroundColor",
4803
+ "description": null,
4804
+ "type": {
4805
+ "kind": "SCALAR",
4806
+ "name": "String",
4807
+ "ofType": null
4808
+ },
4809
+ "defaultValue": null,
4810
+ "isDeprecated": false,
4811
+ "deprecationReason": null
4812
+ },
4813
+ {
4814
+ "name": "borderColor",
4815
+ "description": null,
4816
+ "type": {
4817
+ "kind": "SCALAR",
4818
+ "name": "String",
4819
+ "ofType": null
4820
+ },
4821
+ "defaultValue": null,
4822
+ "isDeprecated": false,
4823
+ "deprecationReason": null
4824
+ },
4825
+ {
4826
+ "name": "primary",
4827
+ "description": null,
4828
+ "type": {
4829
+ "kind": "SCALAR",
4830
+ "name": "String",
4831
+ "ofType": null
4832
+ },
4833
+ "defaultValue": null,
4834
+ "isDeprecated": false,
4835
+ "deprecationReason": null
4836
+ },
4837
+ {
4838
+ "name": "selectionColor",
4839
+ "description": null,
4840
+ "type": {
4841
+ "kind": "SCALAR",
4842
+ "name": "String",
4843
+ "ofType": null
4844
+ },
4845
+ "defaultValue": null,
4846
+ "isDeprecated": false,
4847
+ "deprecationReason": null
4848
+ },
4849
+ {
4850
+ "name": "summaryBackgroundColor",
4851
+ "description": null,
4852
+ "type": {
4853
+ "kind": "SCALAR",
4854
+ "name": "String",
4855
+ "ofType": null
4856
+ },
4857
+ "defaultValue": null,
4858
+ "isDeprecated": false,
4859
+ "deprecationReason": null
4860
+ },
4861
+ {
4862
+ "name": "textColor",
4863
+ "description": null,
4864
+ "type": {
4865
+ "kind": "SCALAR",
4866
+ "name": "String",
4867
+ "ofType": null
4868
+ },
4869
+ "defaultValue": null,
4870
+ "isDeprecated": false,
4871
+ "deprecationReason": null
4872
+ }
4873
+ ],
4874
+ "interfaces": null,
4875
+ "enumValues": null,
4876
+ "possibleTypes": null
4877
+ },
4548
4878
  {
4549
4879
  "kind": "OBJECT",
4550
4880
  "name": "CheckoutState",
@@ -4578,6 +4908,18 @@
4578
4908
  "isDeprecated": false,
4579
4909
  "deprecationReason": null
4580
4910
  },
4911
+ {
4912
+ "name": "configuration",
4913
+ "description": null,
4914
+ "args": [],
4915
+ "type": {
4916
+ "kind": "OBJECT",
4917
+ "name": "CheckoutConfiguration",
4918
+ "ofType": null
4919
+ },
4920
+ "isDeprecated": false,
4921
+ "deprecationReason": null
4922
+ },
4581
4923
  {
4582
4924
  "name": "customer",
4583
4925
  "description": null,
@@ -20317,6 +20659,12 @@
20317
20659
  "isDeprecated": false,
20318
20660
  "deprecationReason": null
20319
20661
  },
20662
+ {
20663
+ "name": "PromotionalEntitlementNotFoundError",
20664
+ "description": null,
20665
+ "isDeprecated": false,
20666
+ "deprecationReason": null
20667
+ },
20320
20668
  {
20321
20669
  "name": "RateLimitExceeded",
20322
20670
  "description": null,
@@ -33428,6 +33776,39 @@
33428
33776
  "isDeprecated": false,
33429
33777
  "deprecationReason": null
33430
33778
  },
33779
+ {
33780
+ "name": "revokePromotionalEntitlement",
33781
+ "description": null,
33782
+ "args": [
33783
+ {
33784
+ "name": "input",
33785
+ "description": null,
33786
+ "type": {
33787
+ "kind": "NON_NULL",
33788
+ "name": null,
33789
+ "ofType": {
33790
+ "kind": "INPUT_OBJECT",
33791
+ "name": "RevokePromotionalEntitlementInput",
33792
+ "ofType": null
33793
+ }
33794
+ },
33795
+ "defaultValue": null,
33796
+ "isDeprecated": false,
33797
+ "deprecationReason": null
33798
+ }
33799
+ ],
33800
+ "type": {
33801
+ "kind": "NON_NULL",
33802
+ "name": null,
33803
+ "ofType": {
33804
+ "kind": "OBJECT",
33805
+ "name": "PromotionalEntitlement",
33806
+ "ofType": null
33807
+ }
33808
+ },
33809
+ "isDeprecated": false,
33810
+ "deprecationReason": null
33811
+ },
33431
33812
  {
33432
33813
  "name": "setBasePlanOnPlan",
33433
33814
  "description": null,
@@ -33659,6 +34040,47 @@
33659
34040
  "isDeprecated": false,
33660
34041
  "deprecationReason": null
33661
34042
  },
34043
+ {
34044
+ "name": "setPromotionalEntitlements",
34045
+ "description": null,
34046
+ "args": [
34047
+ {
34048
+ "name": "input",
34049
+ "description": null,
34050
+ "type": {
34051
+ "kind": "NON_NULL",
34052
+ "name": null,
34053
+ "ofType": {
34054
+ "kind": "INPUT_OBJECT",
34055
+ "name": "SetPromotionalEntitlementsInput",
34056
+ "ofType": null
34057
+ }
34058
+ },
34059
+ "defaultValue": null,
34060
+ "isDeprecated": false,
34061
+ "deprecationReason": null
34062
+ }
34063
+ ],
34064
+ "type": {
34065
+ "kind": "NON_NULL",
34066
+ "name": null,
34067
+ "ofType": {
34068
+ "kind": "LIST",
34069
+ "name": null,
34070
+ "ofType": {
34071
+ "kind": "NON_NULL",
34072
+ "name": null,
34073
+ "ofType": {
34074
+ "kind": "OBJECT",
34075
+ "name": "PromotionalEntitlement",
34076
+ "ofType": null
34077
+ }
34078
+ }
34079
+ }
34080
+ },
34081
+ "isDeprecated": false,
34082
+ "deprecationReason": null
34083
+ },
33662
34084
  {
33663
34085
  "name": "setWidgetConfiguration",
33664
34086
  "description": null,
@@ -51649,6 +52071,61 @@
51649
52071
  "enumValues": null,
51650
52072
  "possibleTypes": null
51651
52073
  },
52074
+ {
52075
+ "kind": "INPUT_OBJECT",
52076
+ "name": "RevokePromotionalEntitlementInput",
52077
+ "description": null,
52078
+ "fields": null,
52079
+ "inputFields": [
52080
+ {
52081
+ "name": "customerId",
52082
+ "description": null,
52083
+ "type": {
52084
+ "kind": "NON_NULL",
52085
+ "name": null,
52086
+ "ofType": {
52087
+ "kind": "SCALAR",
52088
+ "name": "String",
52089
+ "ofType": null
52090
+ }
52091
+ },
52092
+ "defaultValue": null,
52093
+ "isDeprecated": false,
52094
+ "deprecationReason": null
52095
+ },
52096
+ {
52097
+ "name": "environmentId",
52098
+ "description": null,
52099
+ "type": {
52100
+ "kind": "SCALAR",
52101
+ "name": "String",
52102
+ "ofType": null
52103
+ },
52104
+ "defaultValue": null,
52105
+ "isDeprecated": false,
52106
+ "deprecationReason": null
52107
+ },
52108
+ {
52109
+ "name": "featureId",
52110
+ "description": null,
52111
+ "type": {
52112
+ "kind": "NON_NULL",
52113
+ "name": null,
52114
+ "ofType": {
52115
+ "kind": "SCALAR",
52116
+ "name": "String",
52117
+ "ofType": null
52118
+ }
52119
+ },
52120
+ "defaultValue": null,
52121
+ "isDeprecated": false,
52122
+ "deprecationReason": null
52123
+ }
52124
+ ],
52125
+ "interfaces": null,
52126
+ "enumValues": null,
52127
+ "possibleTypes": null
52128
+ },
51652
52129
  {
51653
52130
  "kind": "UNION",
51654
52131
  "name": "ScheduleVariables",
@@ -51981,6 +52458,196 @@
51981
52458
  "enumValues": null,
51982
52459
  "possibleTypes": null
51983
52460
  },
52461
+ {
52462
+ "kind": "INPUT_OBJECT",
52463
+ "name": "SetPromotionalEntitlementInput",
52464
+ "description": null,
52465
+ "fields": null,
52466
+ "inputFields": [
52467
+ {
52468
+ "name": "customEndDate",
52469
+ "description": null,
52470
+ "type": {
52471
+ "kind": "SCALAR",
52472
+ "name": "DateTime",
52473
+ "ofType": null
52474
+ },
52475
+ "defaultValue": null,
52476
+ "isDeprecated": false,
52477
+ "deprecationReason": null
52478
+ },
52479
+ {
52480
+ "name": "featureId",
52481
+ "description": null,
52482
+ "type": {
52483
+ "kind": "NON_NULL",
52484
+ "name": null,
52485
+ "ofType": {
52486
+ "kind": "SCALAR",
52487
+ "name": "String",
52488
+ "ofType": null
52489
+ }
52490
+ },
52491
+ "defaultValue": null,
52492
+ "isDeprecated": false,
52493
+ "deprecationReason": null
52494
+ },
52495
+ {
52496
+ "name": "hasUnlimitedUsage",
52497
+ "description": null,
52498
+ "type": {
52499
+ "kind": "SCALAR",
52500
+ "name": "Boolean",
52501
+ "ofType": null
52502
+ },
52503
+ "defaultValue": null,
52504
+ "isDeprecated": false,
52505
+ "deprecationReason": null
52506
+ },
52507
+ {
52508
+ "name": "isVisible",
52509
+ "description": null,
52510
+ "type": {
52511
+ "kind": "SCALAR",
52512
+ "name": "Boolean",
52513
+ "ofType": null
52514
+ },
52515
+ "defaultValue": null,
52516
+ "isDeprecated": false,
52517
+ "deprecationReason": null
52518
+ },
52519
+ {
52520
+ "name": "monthlyResetPeriodConfiguration",
52521
+ "description": null,
52522
+ "type": {
52523
+ "kind": "INPUT_OBJECT",
52524
+ "name": "MonthlyResetPeriodConfigInput",
52525
+ "ofType": null
52526
+ },
52527
+ "defaultValue": null,
52528
+ "isDeprecated": false,
52529
+ "deprecationReason": null
52530
+ },
52531
+ {
52532
+ "name": "period",
52533
+ "description": null,
52534
+ "type": {
52535
+ "kind": "NON_NULL",
52536
+ "name": null,
52537
+ "ofType": {
52538
+ "kind": "ENUM",
52539
+ "name": "PromotionalEntitlementPeriod",
52540
+ "ofType": null
52541
+ }
52542
+ },
52543
+ "defaultValue": null,
52544
+ "isDeprecated": false,
52545
+ "deprecationReason": null
52546
+ },
52547
+ {
52548
+ "name": "resetPeriod",
52549
+ "description": null,
52550
+ "type": {
52551
+ "kind": "ENUM",
52552
+ "name": "EntitlementResetPeriod",
52553
+ "ofType": null
52554
+ },
52555
+ "defaultValue": null,
52556
+ "isDeprecated": false,
52557
+ "deprecationReason": null
52558
+ },
52559
+ {
52560
+ "name": "usageLimit",
52561
+ "description": null,
52562
+ "type": {
52563
+ "kind": "SCALAR",
52564
+ "name": "Float",
52565
+ "ofType": null
52566
+ },
52567
+ "defaultValue": null,
52568
+ "isDeprecated": false,
52569
+ "deprecationReason": null
52570
+ },
52571
+ {
52572
+ "name": "weeklyResetPeriodConfiguration",
52573
+ "description": null,
52574
+ "type": {
52575
+ "kind": "INPUT_OBJECT",
52576
+ "name": "WeeklyResetPeriodConfigInput",
52577
+ "ofType": null
52578
+ },
52579
+ "defaultValue": null,
52580
+ "isDeprecated": false,
52581
+ "deprecationReason": null
52582
+ }
52583
+ ],
52584
+ "interfaces": null,
52585
+ "enumValues": null,
52586
+ "possibleTypes": null
52587
+ },
52588
+ {
52589
+ "kind": "INPUT_OBJECT",
52590
+ "name": "SetPromotionalEntitlementsInput",
52591
+ "description": null,
52592
+ "fields": null,
52593
+ "inputFields": [
52594
+ {
52595
+ "name": "customerId",
52596
+ "description": null,
52597
+ "type": {
52598
+ "kind": "NON_NULL",
52599
+ "name": null,
52600
+ "ofType": {
52601
+ "kind": "SCALAR",
52602
+ "name": "String",
52603
+ "ofType": null
52604
+ }
52605
+ },
52606
+ "defaultValue": null,
52607
+ "isDeprecated": false,
52608
+ "deprecationReason": null
52609
+ },
52610
+ {
52611
+ "name": "environmentId",
52612
+ "description": null,
52613
+ "type": {
52614
+ "kind": "SCALAR",
52615
+ "name": "String",
52616
+ "ofType": null
52617
+ },
52618
+ "defaultValue": null,
52619
+ "isDeprecated": false,
52620
+ "deprecationReason": null
52621
+ },
52622
+ {
52623
+ "name": "promotionalEntitlements",
52624
+ "description": null,
52625
+ "type": {
52626
+ "kind": "NON_NULL",
52627
+ "name": null,
52628
+ "ofType": {
52629
+ "kind": "LIST",
52630
+ "name": null,
52631
+ "ofType": {
52632
+ "kind": "NON_NULL",
52633
+ "name": null,
52634
+ "ofType": {
52635
+ "kind": "INPUT_OBJECT",
52636
+ "name": "SetPromotionalEntitlementInput",
52637
+ "ofType": null
52638
+ }
52639
+ }
52640
+ }
52641
+ },
52642
+ "defaultValue": null,
52643
+ "isDeprecated": false,
52644
+ "deprecationReason": null
52645
+ }
52646
+ ],
52647
+ "interfaces": null,
52648
+ "enumValues": null,
52649
+ "possibleTypes": null
52650
+ },
51984
52651
  {
51985
52652
  "kind": "ENUM",
51986
52653
  "name": "SortDirection",
@@ -66091,6 +66758,18 @@
66091
66758
  "name": "WidgetConfiguration",
66092
66759
  "description": null,
66093
66760
  "fields": [
66761
+ {
66762
+ "name": "checkout",
66763
+ "description": null,
66764
+ "args": [],
66765
+ "type": {
66766
+ "kind": "OBJECT",
66767
+ "name": "CheckoutConfiguration",
66768
+ "ofType": null
66769
+ },
66770
+ "isDeprecated": false,
66771
+ "deprecationReason": null
66772
+ },
66094
66773
  {
66095
66774
  "name": "customerPortal",
66096
66775
  "description": null,
@@ -66127,6 +66806,18 @@
66127
66806
  "description": null,
66128
66807
  "fields": null,
66129
66808
  "inputFields": [
66809
+ {
66810
+ "name": "checkoutConfiguration",
66811
+ "description": null,
66812
+ "type": {
66813
+ "kind": "INPUT_OBJECT",
66814
+ "name": "CheckoutConfigurationInput",
66815
+ "ofType": null
66816
+ },
66817
+ "defaultValue": null,
66818
+ "isDeprecated": false,
66819
+ "deprecationReason": null
66820
+ },
66130
66821
  {
66131
66822
  "name": "customerPortalConfiguration",
66132
66823
  "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.548.0"
4
+ VERSION = "0.550.2"
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.548.0
4
+ version: 0.550.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-21 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient