stigg-api-client 0.550.2 → 0.553.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: 85327b38b83d16dae8ce18471c7a912ccdf91a542e90f1e725c36234a37c1bc8
4
- data.tar.gz: 4a48c7b21dc5b99b7e414d6180f18120f05bde6ae668a5ff90a9ae307d49e839
3
+ metadata.gz: 15828ddbed395ee0c158669642724b8964c9d3176bec7b9a16b0188f308a2b1a
4
+ data.tar.gz: 1e65e2f7ae2816c969c2c874515704aae0d4055e794555d1e5af8c4fb3c39c93
5
5
  SHA512:
6
- metadata.gz: d9df2b461152d6f73c2a77b167853b27d560ece4338c195ec0dd13508c8aaaa8eec6ad06562b0b73345fb807ab816bcef8918f2b6ea6898e340187e51c71ace2
7
- data.tar.gz: a86629411fd49f98245e267a3ae9cf14c519089e5baeec63ba73c0eeb77fd68cfe26e4719501d4f8cb330b13a73e40e0fe880ae28ae8218a74f893e6c9f0cfbb
6
+ metadata.gz: 12c3db9046e3786121b7440eb9a334e4a037346177b89db868a64f0cfb99080a47c7bd935dfe905cb047e3c21b05263dacfd167dc8f5ffc9f364791ca3bb21b8
7
+ data.tar.gz: 5ab08676cf994e40e8117cb4732ab67a8d3df9946349d25866d6e2f51c07f0e3862da530b37876a11988b726df530cff7587a64b372dc186c5b604c595acec76
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.550.2)
4
+ stigg-api-client (0.553.0)
5
5
  graphlient (~> 0.7.0)
6
6
 
7
7
  GEM
@@ -15,7 +15,6 @@ module Stigg
15
15
  updatedAt
16
16
  billingId
17
17
  billingLinkUrl
18
- type
19
18
  status
20
19
  syncStates {
21
20
  vendorIdentifier
@@ -546,82 +545,6 @@ module Stigg
546
545
  }
547
546
  GRAPHQL
548
547
 
549
- PaywallPackageEntitlementFragment = <<~GRAPHQL
550
- fragment PaywallPackageEntitlementFragment on PackageEntitlement {
551
- usageLimit
552
- hasUnlimitedUsage
553
- featureId
554
- resetPeriod
555
- hiddenFromWidgets
556
- displayNameOverride
557
- feature {
558
- featureType
559
- meterType
560
- featureUnits
561
- featureUnitsPlural
562
- displayName
563
- description
564
- refId
565
- additionalMetaData
566
- }
567
- }
568
- GRAPHQL
569
-
570
- PaywallAddonFragment = <<~GRAPHQL
571
- fragment PaywallAddonFragment on Addon {
572
- id
573
- refId
574
- billingId
575
- displayName
576
- description
577
- additionalMetaData
578
- billingId
579
- entitlements {
580
- ...PaywallPackageEntitlementFragment
581
- }
582
- prices {
583
- ...PriceFragment
584
- }
585
- additionalMetaData
586
- pricingType
587
- }
588
- GRAPHQL
589
-
590
- PaywallPlanFragment = <<~GRAPHQL
591
- fragment PaywallPlanFragment on Plan {
592
- id
593
- refId
594
- description
595
- displayName
596
- billingId
597
- product {
598
- ...ProductFragment
599
- }
600
- basePlan {
601
- refId
602
- displayName
603
- }
604
- entitlements {
605
- ...PaywallPackageEntitlementFragment
606
- }
607
- additionalMetaData
608
- inheritedEntitlements {
609
- ...PaywallPackageEntitlementFragment
610
- }
611
- prices {
612
- ...PriceFragment
613
- }
614
- pricingType
615
- defaultTrialConfig {
616
- duration
617
- units
618
- }
619
- compatibleAddons {
620
- ...PaywallAddonFragment
621
- }
622
- }
623
- GRAPHQL
624
-
625
548
  TypographyConfigurationFragment = <<~GRAPHQL
626
549
  fragment TypographyConfigurationFragment on TypographyConfiguration {
627
550
  fontFamily
@@ -675,8 +598,8 @@ module Stigg
675
598
  }
676
599
  GRAPHQL
677
600
 
678
- PaywallCurrency = <<~GRAPHQL
679
- fragment PaywallCurrency on PaywallCurrency {
601
+ PaywallCurrencyFragment = <<~GRAPHQL
602
+ fragment PaywallCurrencyFragment on PaywallCurrency {
680
603
  code
681
604
  symbol
682
605
  }
@@ -724,13 +647,13 @@ module Stigg
724
647
  ...CustomerPortalSubscriptionFragment
725
648
  }
726
649
  entitlements {
727
- ...CustomerPortalEntitlement
650
+ ...CustomerPortalEntitlementFragment
728
651
  }
729
652
  promotionalEntitlements {
730
- ...CustomerPortalPromotionalEntitlement
653
+ ...CustomerPortalPromotionalEntitlementFragment
731
654
  }
732
655
  billingInformation {
733
- ...CustomerPortalBillingInformation
656
+ ...CustomerPortalBillingInformationFragment
734
657
  }
735
658
  showWatermark
736
659
  billingPortalUrl
@@ -876,16 +799,16 @@ module Stigg
876
799
  }
877
800
  }
878
801
  addons {
879
- ...CustomerPortalSubscriptionAddon
802
+ ...CustomerPortalSubscriptionAddonFragment
880
803
  }
881
804
  scheduledUpdates {
882
- ...CustomerPortalSubscriptionScheduledUpdateData
805
+ ...CustomerPortalSubscriptionScheduledUpdateDataFragment
883
806
  }
884
807
  }
885
808
  GRAPHQL
886
809
 
887
- CustomerPortalSubscriptionAddon = <<~GRAPHQL
888
- fragment CustomerPortalSubscriptionAddon on CustomerPortalAddon {
810
+ CustomerPortalSubscriptionAddonFragment = <<~GRAPHQL
811
+ fragment CustomerPortalSubscriptionAddonFragment on CustomerPortalAddon {
889
812
  addonId
890
813
  description
891
814
  displayName
@@ -893,8 +816,8 @@ module Stigg
893
816
  }
894
817
  GRAPHQL
895
818
 
896
- CustomerPortalSubscriptionScheduledUpdateData = <<~GRAPHQL
897
- fragment CustomerPortalSubscriptionScheduledUpdateData on SubscriptionScheduledUpdate {
819
+ CustomerPortalSubscriptionScheduledUpdateDataFragment = <<~GRAPHQL
820
+ fragment CustomerPortalSubscriptionScheduledUpdateDataFragment on SubscriptionScheduledUpdate {
898
821
  subscriptionScheduleType
899
822
  scheduleStatus
900
823
  scheduledExecutionTime
@@ -925,8 +848,8 @@ module Stigg
925
848
  }
926
849
  GRAPHQL
927
850
 
928
- CustomerPortalEntitlement = <<~GRAPHQL
929
- fragment CustomerPortalEntitlement on Entitlement {
851
+ CustomerPortalEntitlementFragment = <<~GRAPHQL
852
+ fragment CustomerPortalEntitlementFragment on Entitlement {
930
853
  isGranted
931
854
  usageLimit
932
855
  currentUsage
@@ -942,8 +865,8 @@ module Stigg
942
865
  }
943
866
  GRAPHQL
944
867
 
945
- CustomerPortalPromotionalEntitlement = <<~GRAPHQL
946
- fragment CustomerPortalPromotionalEntitlement on CustomerPortalPromotionalEntitlement {
868
+ CustomerPortalPromotionalEntitlementFragment = <<~GRAPHQL
869
+ fragment CustomerPortalPromotionalEntitlementFragment on CustomerPortalPromotionalEntitlement {
947
870
  displayName
948
871
  hasUnlimitedUsage
949
872
  usageLimit
@@ -953,13 +876,12 @@ module Stigg
953
876
  }
954
877
  GRAPHQL
955
878
 
956
- CustomerPortalBillingInformation = <<~GRAPHQL
957
- fragment CustomerPortalBillingInformation on CustomerPortalBillingInformation {
879
+ CustomerPortalBillingInformationFragment = <<~GRAPHQL
880
+ fragment CustomerPortalBillingInformationFragment on CustomerPortalBillingInformation {
958
881
  email
959
882
  name
960
883
  defaultPaymentMethodLast4Digits
961
884
  defaultPaymentMethodId
962
- defaultPaymentMethodLast4Digits
963
885
  defaultPaymentExpirationMonth
964
886
  defaultPaymentExpirationYear
965
887
  }
@@ -1088,7 +1010,7 @@ module Stigg
1088
1010
  ...PlanFragment
1089
1011
  }
1090
1012
  currency {
1091
- ...PaywallCurrency
1013
+ ...PaywallCurrencyFragment
1092
1014
  }
1093
1015
  configuration {
1094
1016
  ...PaywallConfigurationFragment
@@ -1167,9 +1089,11 @@ module Stigg
1167
1089
  #{Fragment::SlimCustomerFragment}
1168
1090
  GRAPHQL
1169
1091
 
1170
- SetPromotionalEntitlements = <<~GRAPHQL
1171
- mutation ($input: SetPromotionalEntitlementsInput!) {
1172
- setPromotionalEntitlements(input: $input) {
1092
+ GrantPromotionalEntitlements = <<~GRAPHQL
1093
+ mutation (
1094
+ $input: GrantPromotionalEntitlementsInput!
1095
+ ) {
1096
+ grantPromotionalEntitlements(input: $input) {
1173
1097
  ...PromotionalEntitlementFragment
1174
1098
  }
1175
1099
  }
@@ -1439,7 +1363,7 @@ module Stigg
1439
1363
  #{Fragment::AddonFragment}
1440
1364
  #{Fragment::PriceFragment}
1441
1365
  #{Fragment::PriceTierFragment}
1442
- #{Fragment::PaywallCurrency}
1366
+ #{Fragment::PaywallCurrencyFragment}
1443
1367
  #{Fragment::PaywallConfigurationFragment}
1444
1368
  #{Fragment::TypographyConfigurationFragment}
1445
1369
  #{Fragment::FontVariantFragment}
@@ -1510,20 +1434,20 @@ module Stigg
1510
1434
  #{Fragment::CustomerPortalFragment}
1511
1435
  #{Fragment::CustomerPortalSubscriptionFragment}
1512
1436
  #{Fragment::CustomerPortalSubscriptionPriceFragment}
1513
- #{Fragment::CustomerPortalSubscriptionAddon}
1514
- #{Fragment::CustomerPortalSubscriptionScheduledUpdateData}
1515
- #{Fragment::CustomerPortalEntitlement}
1437
+ #{Fragment::CustomerPortalSubscriptionAddonFragment}
1438
+ #{Fragment::CustomerPortalSubscriptionScheduledUpdateDataFragment}
1439
+ #{Fragment::CustomerPortalEntitlementFragment}
1516
1440
  #{Fragment::ResetPeriodConfigurationFragment}
1517
1441
  #{Fragment::FeatureFragment}
1518
- #{Fragment::CustomerPortalPromotionalEntitlement}
1519
- #{Fragment::CustomerPortalBillingInformation}
1442
+ #{Fragment::CustomerPortalPromotionalEntitlementFragment}
1443
+ #{Fragment::CustomerPortalBillingInformationFragment}
1520
1444
  #{Fragment::CustomerPortalConfigurationFragment}
1521
1445
  #{Fragment::TypographyConfigurationFragment}
1522
1446
  #{Fragment::FontVariantFragment}
1523
1447
  #{Fragment::CustomerResourceFragment}
1524
1448
  GRAPHQL
1525
1449
 
1526
- CheckoutState = <<~GRAPHQL
1450
+ GetCheckoutState = <<~GRAPHQL
1527
1451
  query ($input: CheckoutStateInput!) {
1528
1452
  checkoutState(input: $input) {
1529
1453
  ...CheckoutStateFragment
@@ -1573,7 +1497,7 @@ module Stigg
1573
1497
  #{Fragment::LayoutConfigurationFragment}
1574
1498
  GRAPHQL
1575
1499
 
1576
- UsageHistory = <<~GRAPHQL
1500
+ GetUsageHistory = <<~GRAPHQL
1577
1501
  query ($usageHistoryInput: UsageHistoryInput!) {
1578
1502
  usageHistory(usageHistoryInput: $usageHistoryInput) {
1579
1503
  ...UsageHistoryFragment
@@ -1582,7 +1506,7 @@ module Stigg
1582
1506
  #{Fragment::UsageHistoryFragment}
1583
1507
  GRAPHQL
1584
1508
 
1585
- EntitlementsUpdated = <<~GRAPHQL
1509
+ OnEntitlementsUpdated = <<~GRAPHQL
1586
1510
  subscription {
1587
1511
  entitlementsUpdated {
1588
1512
  ...EntitlementsUpdatedPayload
@@ -1594,7 +1518,7 @@ module Stigg
1594
1518
  #{Fragment::FeatureFragment}
1595
1519
  GRAPHQL
1596
1520
 
1597
- UsageUpdated = <<~GRAPHQL
1521
+ OnUsageUpdated = <<~GRAPHQL
1598
1522
  subscription {
1599
1523
  usageUpdated {
1600
1524
  ...EntitlementUsageUpdated
@@ -25827,6 +25827,196 @@
25827
25827
  "enumValues": null,
25828
25828
  "possibleTypes": null
25829
25829
  },
25830
+ {
25831
+ "kind": "INPUT_OBJECT",
25832
+ "name": "GrantPromotionalEntitlementInput",
25833
+ "description": null,
25834
+ "fields": null,
25835
+ "inputFields": [
25836
+ {
25837
+ "name": "customEndDate",
25838
+ "description": null,
25839
+ "type": {
25840
+ "kind": "SCALAR",
25841
+ "name": "DateTime",
25842
+ "ofType": null
25843
+ },
25844
+ "defaultValue": null,
25845
+ "isDeprecated": false,
25846
+ "deprecationReason": null
25847
+ },
25848
+ {
25849
+ "name": "featureId",
25850
+ "description": null,
25851
+ "type": {
25852
+ "kind": "NON_NULL",
25853
+ "name": null,
25854
+ "ofType": {
25855
+ "kind": "SCALAR",
25856
+ "name": "String",
25857
+ "ofType": null
25858
+ }
25859
+ },
25860
+ "defaultValue": null,
25861
+ "isDeprecated": false,
25862
+ "deprecationReason": null
25863
+ },
25864
+ {
25865
+ "name": "hasUnlimitedUsage",
25866
+ "description": null,
25867
+ "type": {
25868
+ "kind": "SCALAR",
25869
+ "name": "Boolean",
25870
+ "ofType": null
25871
+ },
25872
+ "defaultValue": null,
25873
+ "isDeprecated": false,
25874
+ "deprecationReason": null
25875
+ },
25876
+ {
25877
+ "name": "isVisible",
25878
+ "description": null,
25879
+ "type": {
25880
+ "kind": "SCALAR",
25881
+ "name": "Boolean",
25882
+ "ofType": null
25883
+ },
25884
+ "defaultValue": null,
25885
+ "isDeprecated": false,
25886
+ "deprecationReason": null
25887
+ },
25888
+ {
25889
+ "name": "monthlyResetPeriodConfiguration",
25890
+ "description": null,
25891
+ "type": {
25892
+ "kind": "INPUT_OBJECT",
25893
+ "name": "MonthlyResetPeriodConfigInput",
25894
+ "ofType": null
25895
+ },
25896
+ "defaultValue": null,
25897
+ "isDeprecated": false,
25898
+ "deprecationReason": null
25899
+ },
25900
+ {
25901
+ "name": "period",
25902
+ "description": null,
25903
+ "type": {
25904
+ "kind": "NON_NULL",
25905
+ "name": null,
25906
+ "ofType": {
25907
+ "kind": "ENUM",
25908
+ "name": "PromotionalEntitlementPeriod",
25909
+ "ofType": null
25910
+ }
25911
+ },
25912
+ "defaultValue": null,
25913
+ "isDeprecated": false,
25914
+ "deprecationReason": null
25915
+ },
25916
+ {
25917
+ "name": "resetPeriod",
25918
+ "description": null,
25919
+ "type": {
25920
+ "kind": "ENUM",
25921
+ "name": "EntitlementResetPeriod",
25922
+ "ofType": null
25923
+ },
25924
+ "defaultValue": null,
25925
+ "isDeprecated": false,
25926
+ "deprecationReason": null
25927
+ },
25928
+ {
25929
+ "name": "usageLimit",
25930
+ "description": null,
25931
+ "type": {
25932
+ "kind": "SCALAR",
25933
+ "name": "Float",
25934
+ "ofType": null
25935
+ },
25936
+ "defaultValue": null,
25937
+ "isDeprecated": false,
25938
+ "deprecationReason": null
25939
+ },
25940
+ {
25941
+ "name": "weeklyResetPeriodConfiguration",
25942
+ "description": null,
25943
+ "type": {
25944
+ "kind": "INPUT_OBJECT",
25945
+ "name": "WeeklyResetPeriodConfigInput",
25946
+ "ofType": null
25947
+ },
25948
+ "defaultValue": null,
25949
+ "isDeprecated": false,
25950
+ "deprecationReason": null
25951
+ }
25952
+ ],
25953
+ "interfaces": null,
25954
+ "enumValues": null,
25955
+ "possibleTypes": null
25956
+ },
25957
+ {
25958
+ "kind": "INPUT_OBJECT",
25959
+ "name": "GrantPromotionalEntitlementsInput",
25960
+ "description": null,
25961
+ "fields": null,
25962
+ "inputFields": [
25963
+ {
25964
+ "name": "customerId",
25965
+ "description": null,
25966
+ "type": {
25967
+ "kind": "NON_NULL",
25968
+ "name": null,
25969
+ "ofType": {
25970
+ "kind": "SCALAR",
25971
+ "name": "String",
25972
+ "ofType": null
25973
+ }
25974
+ },
25975
+ "defaultValue": null,
25976
+ "isDeprecated": false,
25977
+ "deprecationReason": null
25978
+ },
25979
+ {
25980
+ "name": "environmentId",
25981
+ "description": null,
25982
+ "type": {
25983
+ "kind": "SCALAR",
25984
+ "name": "String",
25985
+ "ofType": null
25986
+ },
25987
+ "defaultValue": null,
25988
+ "isDeprecated": false,
25989
+ "deprecationReason": null
25990
+ },
25991
+ {
25992
+ "name": "promotionalEntitlements",
25993
+ "description": null,
25994
+ "type": {
25995
+ "kind": "NON_NULL",
25996
+ "name": null,
25997
+ "ofType": {
25998
+ "kind": "LIST",
25999
+ "name": null,
26000
+ "ofType": {
26001
+ "kind": "NON_NULL",
26002
+ "name": null,
26003
+ "ofType": {
26004
+ "kind": "INPUT_OBJECT",
26005
+ "name": "GrantPromotionalEntitlementInput",
26006
+ "ofType": null
26007
+ }
26008
+ }
26009
+ }
26010
+ },
26011
+ "defaultValue": null,
26012
+ "isDeprecated": false,
26013
+ "deprecationReason": null
26014
+ }
26015
+ ],
26016
+ "interfaces": null,
26017
+ "enumValues": null,
26018
+ "possibleTypes": null
26019
+ },
25830
26020
  {
25831
26021
  "kind": "OBJECT",
25832
26022
  "name": "HiddenFromWidgetsChange",
@@ -32791,6 +32981,47 @@
32791
32981
  "isDeprecated": false,
32792
32982
  "deprecationReason": null
32793
32983
  },
32984
+ {
32985
+ "name": "grantPromotionalEntitlements",
32986
+ "description": null,
32987
+ "args": [
32988
+ {
32989
+ "name": "input",
32990
+ "description": null,
32991
+ "type": {
32992
+ "kind": "NON_NULL",
32993
+ "name": null,
32994
+ "ofType": {
32995
+ "kind": "INPUT_OBJECT",
32996
+ "name": "GrantPromotionalEntitlementsInput",
32997
+ "ofType": null
32998
+ }
32999
+ },
33000
+ "defaultValue": null,
33001
+ "isDeprecated": false,
33002
+ "deprecationReason": null
33003
+ }
33004
+ ],
33005
+ "type": {
33006
+ "kind": "NON_NULL",
33007
+ "name": null,
33008
+ "ofType": {
33009
+ "kind": "LIST",
33010
+ "name": null,
33011
+ "ofType": {
33012
+ "kind": "NON_NULL",
33013
+ "name": null,
33014
+ "ofType": {
33015
+ "kind": "OBJECT",
33016
+ "name": "PromotionalEntitlement",
33017
+ "ofType": null
33018
+ }
33019
+ }
33020
+ }
33021
+ },
33022
+ "isDeprecated": false,
33023
+ "deprecationReason": null
33024
+ },
32794
33025
  {
32795
33026
  "name": "hideGettingStartedPage",
32796
33027
  "description": null,
@@ -34040,47 +34271,6 @@
34040
34271
  "isDeprecated": false,
34041
34272
  "deprecationReason": null
34042
34273
  },
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
- },
34084
34274
  {
34085
34275
  "name": "setWidgetConfiguration",
34086
34276
  "description": null,
@@ -52458,196 +52648,6 @@
52458
52648
  "enumValues": null,
52459
52649
  "possibleTypes": null
52460
52650
  },
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
- },
52651
52651
  {
52652
52652
  "kind": "ENUM",
52653
52653
  "name": "SortDirection",
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.550.2"
4
+ VERSION = "0.553.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.550.2
4
+ version: 0.553.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-08-23 00:00:00.000000000 Z
11
+ date: 2023-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient