stigg-api-client 1.96.0__py3-none-any.whl → 1.96.1__py3-none-any.whl

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.

Potentially problematic release.


This version of stigg-api-client might be problematic. Click here for more details.

@@ -963,6 +963,8 @@ def fragment_mock_paywall_plan_fragment():
963
963
  _frag_default_trial_config.units()
964
964
  _frag_compatible_addons = _frag.compatible_addons()
965
965
  _frag_compatible_addons.__fragment__(fragment_mock_paywall_addon_fragment())
966
+ _frag_compatible_package_groups = _frag.compatible_package_groups()
967
+ _frag_compatible_package_groups.__fragment__(fragment_mock_paywall_package_group_fragment())
966
968
  return _frag
967
969
 
968
970
 
@@ -1025,6 +1027,16 @@ def fragment_paywall_calculated_price_points_fragment():
1025
1027
  return _frag
1026
1028
 
1027
1029
 
1030
+ def fragment_mock_paywall_package_group_fragment():
1031
+ _frag = sgqlc.operation.Fragment(_schema.PaywallPackageGroup, 'MockPaywallPackageGroupFragment')
1032
+ _frag.package_group_id()
1033
+ _frag.display_name()
1034
+ _frag.description()
1035
+ _frag_compatible_addons = _frag.compatible_addons()
1036
+ _frag_compatible_addons.__fragment__(fragment_mock_paywall_addon_fragment())
1037
+ return _frag
1038
+
1039
+
1028
1040
  def fragment_mock_paywall_addon_fragment():
1029
1041
  _frag = sgqlc.operation.Fragment(_schema.PaywallAddon, 'MockPaywallAddonFragment')
1030
1042
  _frag.ref_id()
@@ -1032,6 +1044,7 @@ def fragment_mock_paywall_addon_fragment():
1032
1044
  _frag.description()
1033
1045
  _frag.additional_meta_data()
1034
1046
  _frag.billing_id()
1047
+ _frag.max_quantity()
1035
1048
  _frag_entitlements = _frag.entitlements()
1036
1049
  _frag_entitlements.__fragment__(fragment_mock_paywall_package_entitlement_fragment())
1037
1050
  _frag_prices = _frag.prices()
@@ -1177,6 +1190,7 @@ class Fragment:
1177
1190
  layout_configuration_fragment = fragment_layout_configuration_fragment()
1178
1191
  mock_paywall_addon_fragment = fragment_mock_paywall_addon_fragment()
1179
1192
  mock_paywall_package_entitlement_fragment = fragment_mock_paywall_package_entitlement_fragment()
1193
+ mock_paywall_package_group_fragment = fragment_mock_paywall_package_group_fragment()
1180
1194
  mock_paywall_plan_fragment = fragment_mock_paywall_plan_fragment()
1181
1195
  mock_paywall_price_fragment = fragment_mock_paywall_price_fragment()
1182
1196
  overage_price_fragment = fragment_overage_price_fragment()
stigg/generated/schema.py CHANGED
@@ -6981,12 +6981,13 @@ class Paywall(sgqlc.types.Type):
6981
6981
 
6982
6982
  class PaywallAddon(sgqlc.types.Type):
6983
6983
  __schema__ = schema
6984
- __field_names__ = ('additional_meta_data', 'billing_id', 'description', 'display_name', 'entitlements', 'prices', 'pricing_type', 'ref_id')
6984
+ __field_names__ = ('additional_meta_data', 'billing_id', 'description', 'display_name', 'entitlements', 'max_quantity', 'prices', 'pricing_type', 'ref_id')
6985
6985
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
6986
6986
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
6987
6987
  description = sgqlc.types.Field(String, graphql_name='description')
6988
6988
  display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
6989
6989
  entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Entitlement))), graphql_name='entitlements')
6990
+ max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
6990
6991
  prices = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PaywallPrice'))), graphql_name='prices')
6991
6992
  pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
6992
6993
  ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
@@ -7034,13 +7035,23 @@ class PaywallLayoutConfiguration(sgqlc.types.Type):
7034
7035
  plan_width = sgqlc.types.Field(Float, graphql_name='planWidth')
7035
7036
 
7036
7037
 
7038
+ class PaywallPackageGroup(sgqlc.types.Type):
7039
+ __schema__ = schema
7040
+ __field_names__ = ('compatible_addons', 'description', 'display_name', 'package_group_id')
7041
+ compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PaywallAddon)), graphql_name='compatibleAddons')
7042
+ description = sgqlc.types.Field(String, graphql_name='description')
7043
+ display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
7044
+ package_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageGroupId')
7045
+
7046
+
7037
7047
  class PaywallPlan(sgqlc.types.Type):
7038
7048
  __schema__ = schema
7039
- __field_names__ = ('additional_meta_data', 'base_plan', 'billing_id', 'compatible_addons', 'default_trial_config', 'description', 'display_name', 'entitlements', 'inherited_entitlements', 'prices', 'pricing_type', 'product', 'ref_id')
7049
+ __field_names__ = ('additional_meta_data', 'base_plan', 'billing_id', 'compatible_addons', 'compatible_package_groups', 'default_trial_config', 'description', 'display_name', 'entitlements', 'inherited_entitlements', 'prices', 'pricing_type', 'product', 'ref_id')
7040
7050
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
7041
7051
  base_plan = sgqlc.types.Field(PaywallBasePlan, graphql_name='basePlan')
7042
7052
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7043
7053
  compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PaywallAddon)), graphql_name='compatibleAddons')
7054
+ compatible_package_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PaywallPackageGroup)), graphql_name='compatiblePackageGroups')
7044
7055
  default_trial_config = sgqlc.types.Field(DefaultTrialConfig, graphql_name='defaultTrialConfig')
7045
7056
  description = sgqlc.types.Field(String, graphql_name='description')
7046
7057
  display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.96.0
3
+ Version: 1.96.1
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -0,0 +1,9 @@
1
+ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
2
+ stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
3
+ stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ stigg/generated/operations.py,sha256=yU6Ol7VSxxUhv4TM7tDhaLQAYUbrVNHk9eDiGerU7hY,67627
5
+ stigg/generated/schema.py,sha256=v9EJzTmDUIyFgqNj6uJFqB_Nz-MNLASAI7HMDekCIE4,568278
6
+ stigg_api_client-1.96.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-1.96.1.dist-info/METADATA,sha256=_RgTWpK3OgwH6Po-gNsblCcfloENo3JMuajlQi37Gyg,3197
8
+ stigg_api_client-1.96.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-1.96.1.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
2
- stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
3
- stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- stigg/generated/operations.py,sha256=Uf4qrbmUyqDMwz8ZysP4SliucLSaTke2PDqECYJHKYk,66957
5
- stigg/generated/schema.py,sha256=xhhPf9-aKTteL58kHcsForyFyMMUmFrIHvZmy84T0g0,567440
6
- stigg_api_client-1.96.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-1.96.0.dist-info/METADATA,sha256=PXvaU0LgsMXhA1AU1W7itbNm8YdWR3_vr0xbvdj0I9w,3197
8
- stigg_api_client-1.96.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-1.96.0.dist-info/RECORD,,