stigg-api-client 1.2.0__tar.gz → 1.9.0__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.2.0
3
+ Version: 1.9.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "1.2.0"
3
+ version = "1.9.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -122,6 +122,7 @@ def fragment_plan_fragment():
122
122
  _frag.billing_id()
123
123
  _frag.version_number()
124
124
  _frag.additional_meta_data()
125
+ _frag.hidden_from_widgets()
125
126
  _frag_product = _frag.product()
126
127
  _frag_product.__fragment__(fragment_product_fragment())
127
128
  _frag_base_plan = _frag.base_plan()
@@ -1759,12 +1759,13 @@ class GetPackageByRefIdInput(sgqlc.types.Input):
1759
1759
 
1760
1760
  class GetPaywallInput(sgqlc.types.Input):
1761
1761
  __schema__ = schema
1762
- __field_names__ = ('billing_country_code', 'context', 'customer_id', 'environment_id', 'fetch_all_countries_prices', 'product_id', 'resource_id')
1762
+ __field_names__ = ('billing_country_code', 'context', 'customer_id', 'environment_id', 'fetch_all_countries_prices', 'include_hidden_plans', 'product_id', 'resource_id')
1763
1763
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
1764
1764
  context = sgqlc.types.Field(WidgetType, graphql_name='context')
1765
1765
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
1766
1766
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
1767
1767
  fetch_all_countries_prices = sgqlc.types.Field(Boolean, graphql_name='fetchAllCountriesPrices')
1768
+ include_hidden_plans = sgqlc.types.Field(Boolean, graphql_name='includeHiddenPlans')
1768
1769
  product_id = sgqlc.types.Field(String, graphql_name='productId')
1769
1770
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
1770
1771