stigg-api-client 1.98.0 → 1.98.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: c06ed5a2b9782772b0da3977c5f63178c8a30dad823324a274778030816cb4c9
4
- data.tar.gz: 2ae57535f52ba76dbc258ac46fdc11748f986be1241a996ad5884d473776120e
3
+ metadata.gz: 149ca47c99bec2a4400117d8ca6d8e937994c77eff1d6f1406c1141540d12d4d
4
+ data.tar.gz: 1906bb63738b853190e0ef91e338f7396720b2506c24c340d883e796e90c56a1
5
5
  SHA512:
6
- metadata.gz: 3964df732750bc8df4a56b90698fa570f256828d34e143531a350ba47cd7397e75c673b63600dd2159708c3776a3b767e2cd12b407e043f3e39ac981649e59ce
7
- data.tar.gz: 6b65ffdfcc6b6e4dec0bf75623fd495516f8167467f98513464f355597c25fb48f9ded834d8129d137cd03f879d18b1d9435b14626be885fa3bdd4d8dcfc35e8
6
+ metadata.gz: 6c29a20944096c2a2d97e0aba84c83ea1e3400aa56900306c265953da0f31355639da66c50f3863725fb3235be85f8cdc2cb97b691e1a4218cbca4304fa8c2ac
7
+ data.tar.gz: 583ef81d0734b6e66d10e6c0432cc9febb4c6c851382de229d8435896f204aaf5b921d4f48ea6df64581a46c88bb7684220183aaab94d5404206af87990b85f6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (1.98.0)
4
+ stigg-api-client (1.98.1)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql-client (~> 0.19)
7
7
 
@@ -213,6 +213,7 @@ module Stigg
213
213
  }
214
214
  options {
215
215
  minItems
216
+ freeItems
216
217
  }
217
218
  }
218
219
  GRAPHQL
@@ -1130,7 +1131,7 @@ module Stigg
1130
1131
  ...MockPaywallAddonFragment
1131
1132
  }
1132
1133
  compatiblePackageGroups {
1133
- ...MockPaywallPackageGroupFragment
1134
+ ...MockPaywallPlanCompatiblePackageGroupsFragment
1134
1135
  }
1135
1136
  }
1136
1137
  GRAPHQL
@@ -1199,14 +1200,26 @@ module Stigg
1199
1200
  }
1200
1201
  GRAPHQL
1201
1202
 
1202
- MockPaywallPackageGroupFragment = <<~GRAPHQL
1203
- fragment MockPaywallPackageGroupFragment on PaywallPackageGroup{
1203
+ MockPaywallPlanCompatiblePackageGroupsFragment = <<~GRAPHQL
1204
+ fragment MockPaywallPlanCompatiblePackageGroupsFragment on PaywallPlanCompatiblePackageGroup {
1204
1205
  packageGroupId
1205
1206
  displayName
1206
1207
  description
1207
- compatibleAddons {
1208
+ addons {
1208
1209
  ...MockPaywallAddonFragment
1209
1210
  }
1211
+ options {
1212
+ minItems
1213
+ freeItems
1214
+ }
1215
+ }
1216
+ GRAPHQL
1217
+
1218
+ MockPaywallAddonDependencyFragment = <<~GRAPHQL
1219
+ fragment MockPaywallAddonDependencyFragment on PaywallAddon {
1220
+ refId
1221
+ displayName
1222
+ description
1210
1223
  }
1211
1224
  GRAPHQL
1212
1225
 
@@ -1218,6 +1231,9 @@ module Stigg
1218
1231
  additionalMetaData
1219
1232
  billingId
1220
1233
  maxQuantity
1234
+ dependencies {
1235
+ ...MockPaywallAddonDependencyFragment
1236
+ }
1221
1237
  entitlements {
1222
1238
  ...MockPaywallPackageEntitlementFragment
1223
1239
  }
@@ -1866,7 +1882,8 @@ module Stigg
1866
1882
  #{Fragment::MockPaywallPriceFragment}
1867
1883
  #{Fragment::PriceTierFragment}
1868
1884
  #{Fragment::MockPaywallAddonFragment}
1869
- #{Fragment::MockPaywallPackageGroupFragment}
1885
+ #{Fragment::MockPaywallAddonDependencyFragment}
1886
+ #{Fragment::MockPaywallPlanCompatiblePackageGroupsFragment}
1870
1887
  #{Fragment::PaywallConfigurationFragment}
1871
1888
  #{Fragment::TypographyConfigurationFragment}
1872
1889
  #{Fragment::FontVariantFragment}
@@ -45021,6 +45021,26 @@
45021
45021
  "isDeprecated": false,
45022
45022
  "deprecationReason": null
45023
45023
  },
45024
+ {
45025
+ "name": "dependencies",
45026
+ "description": "List of addons this addon is dependant on",
45027
+ "args": [],
45028
+ "type": {
45029
+ "kind": "LIST",
45030
+ "name": null,
45031
+ "ofType": {
45032
+ "kind": "NON_NULL",
45033
+ "name": null,
45034
+ "ofType": {
45035
+ "kind": "OBJECT",
45036
+ "name": "PaywallAddon",
45037
+ "ofType": null
45038
+ }
45039
+ }
45040
+ },
45041
+ "isDeprecated": false,
45042
+ "deprecationReason": null
45043
+ },
45024
45044
  {
45025
45045
  "name": "description",
45026
45046
  "description": null,
@@ -45607,81 +45627,6 @@
45607
45627
  "enumValues": null,
45608
45628
  "possibleTypes": null
45609
45629
  },
45610
- {
45611
- "kind": "OBJECT",
45612
- "name": "PaywallPackageGroup",
45613
- "description": null,
45614
- "fields": [
45615
- {
45616
- "name": "compatibleAddons",
45617
- "description": "Included addons in the package group",
45618
- "args": [],
45619
- "type": {
45620
- "kind": "LIST",
45621
- "name": null,
45622
- "ofType": {
45623
- "kind": "NON_NULL",
45624
- "name": null,
45625
- "ofType": {
45626
- "kind": "OBJECT",
45627
- "name": "PaywallAddon",
45628
- "ofType": null
45629
- }
45630
- }
45631
- },
45632
- "isDeprecated": false,
45633
- "deprecationReason": null
45634
- },
45635
- {
45636
- "name": "description",
45637
- "description": "The description of the package group",
45638
- "args": [],
45639
- "type": {
45640
- "kind": "SCALAR",
45641
- "name": "String",
45642
- "ofType": null
45643
- },
45644
- "isDeprecated": false,
45645
- "deprecationReason": null
45646
- },
45647
- {
45648
- "name": "displayName",
45649
- "description": "The display name of the package group",
45650
- "args": [],
45651
- "type": {
45652
- "kind": "NON_NULL",
45653
- "name": null,
45654
- "ofType": {
45655
- "kind": "SCALAR",
45656
- "name": "String",
45657
- "ofType": null
45658
- }
45659
- },
45660
- "isDeprecated": false,
45661
- "deprecationReason": null
45662
- },
45663
- {
45664
- "name": "packageGroupId",
45665
- "description": "The id of the package group",
45666
- "args": [],
45667
- "type": {
45668
- "kind": "NON_NULL",
45669
- "name": null,
45670
- "ofType": {
45671
- "kind": "SCALAR",
45672
- "name": "String",
45673
- "ofType": null
45674
- }
45675
- },
45676
- "isDeprecated": false,
45677
- "deprecationReason": null
45678
- }
45679
- ],
45680
- "inputFields": null,
45681
- "interfaces": [],
45682
- "enumValues": null,
45683
- "possibleTypes": null
45684
- },
45685
45630
  {
45686
45631
  "kind": "OBJECT",
45687
45632
  "name": "PaywallPlan",
@@ -45755,7 +45700,7 @@
45755
45700
  "name": null,
45756
45701
  "ofType": {
45757
45702
  "kind": "OBJECT",
45758
- "name": "PaywallPackageGroup",
45703
+ "name": "PaywallPlanCompatiblePackageGroup",
45759
45704
  "ofType": null
45760
45705
  }
45761
45706
  }
@@ -45917,6 +45862,132 @@
45917
45862
  "enumValues": null,
45918
45863
  "possibleTypes": null
45919
45864
  },
45865
+ {
45866
+ "kind": "OBJECT",
45867
+ "name": "PaywallPlanCompatiblePackageGroup",
45868
+ "description": null,
45869
+ "fields": [
45870
+ {
45871
+ "name": "addons",
45872
+ "description": "Included addons in the package group",
45873
+ "args": [],
45874
+ "type": {
45875
+ "kind": "LIST",
45876
+ "name": null,
45877
+ "ofType": {
45878
+ "kind": "NON_NULL",
45879
+ "name": null,
45880
+ "ofType": {
45881
+ "kind": "OBJECT",
45882
+ "name": "PaywallAddon",
45883
+ "ofType": null
45884
+ }
45885
+ }
45886
+ },
45887
+ "isDeprecated": false,
45888
+ "deprecationReason": null
45889
+ },
45890
+ {
45891
+ "name": "description",
45892
+ "description": "The description of the package group",
45893
+ "args": [],
45894
+ "type": {
45895
+ "kind": "SCALAR",
45896
+ "name": "String",
45897
+ "ofType": null
45898
+ },
45899
+ "isDeprecated": false,
45900
+ "deprecationReason": null
45901
+ },
45902
+ {
45903
+ "name": "displayName",
45904
+ "description": "The display name of the package group",
45905
+ "args": [],
45906
+ "type": {
45907
+ "kind": "NON_NULL",
45908
+ "name": null,
45909
+ "ofType": {
45910
+ "kind": "SCALAR",
45911
+ "name": "String",
45912
+ "ofType": null
45913
+ }
45914
+ },
45915
+ "isDeprecated": false,
45916
+ "deprecationReason": null
45917
+ },
45918
+ {
45919
+ "name": "options",
45920
+ "description": "Plan compatible package group options",
45921
+ "args": [],
45922
+ "type": {
45923
+ "kind": "NON_NULL",
45924
+ "name": null,
45925
+ "ofType": {
45926
+ "kind": "OBJECT",
45927
+ "name": "PaywallPlanCompatiblePackageGroupOptions",
45928
+ "ofType": null
45929
+ }
45930
+ },
45931
+ "isDeprecated": false,
45932
+ "deprecationReason": null
45933
+ },
45934
+ {
45935
+ "name": "packageGroupId",
45936
+ "description": "The id of the package group",
45937
+ "args": [],
45938
+ "type": {
45939
+ "kind": "NON_NULL",
45940
+ "name": null,
45941
+ "ofType": {
45942
+ "kind": "SCALAR",
45943
+ "name": "String",
45944
+ "ofType": null
45945
+ }
45946
+ },
45947
+ "isDeprecated": false,
45948
+ "deprecationReason": null
45949
+ }
45950
+ ],
45951
+ "inputFields": null,
45952
+ "interfaces": [],
45953
+ "enumValues": null,
45954
+ "possibleTypes": null
45955
+ },
45956
+ {
45957
+ "kind": "OBJECT",
45958
+ "name": "PaywallPlanCompatiblePackageGroupOptions",
45959
+ "description": "Plan compatible package group options",
45960
+ "fields": [
45961
+ {
45962
+ "name": "freeItems",
45963
+ "description": "Number of free items from package group",
45964
+ "args": [],
45965
+ "type": {
45966
+ "kind": "SCALAR",
45967
+ "name": "Float",
45968
+ "ofType": null
45969
+ },
45970
+ "isDeprecated": false,
45971
+ "deprecationReason": null
45972
+ },
45973
+ {
45974
+ "name": "minItems",
45975
+ "description": "Number of required items from packageGroup",
45976
+ "args": [],
45977
+ "type": {
45978
+ "kind": "SCALAR",
45979
+ "name": "Float",
45980
+ "ofType": null
45981
+ },
45982
+ "isDeprecated": false,
45983
+ "deprecationReason": null
45984
+ }
45985
+ ],
45986
+ "inputFields": null,
45987
+ "interfaces": [],
45988
+ "enumValues": null,
45989
+ "possibleTypes": null
45990
+ },
45920
45991
  {
45921
45992
  "kind": "OBJECT",
45922
45993
  "name": "PaywallPrice",
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.98.0"
4
+ VERSION = "1.98.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.98.0
4
+ version: 1.98.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg