stigg-api-client 1.96.0__tar.gz → 1.96.2__tar.gz
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.
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/PKG-INFO +1 -1
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/pyproject.toml +1 -1
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/stigg/generated/operations.py +14 -0
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/stigg/generated/schema.py +13 -2
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/LICENSE +0 -0
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/README.md +0 -0
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/stigg/__init__.py +0 -0
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/stigg/client.py +0 -0
- {stigg_api_client-1.96.0 → stigg_api_client-1.96.2}/stigg/generated/__init__.py +0 -0
|
@@ -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()
|
|
@@ -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')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|