stigg-api-client 1.72.0__tar.gz → 1.73.5__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.72.0
3
+ Version: 1.73.5
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.72.0"
3
+ version = "1.73.5"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -2651,9 +2651,10 @@ class PriceFilterPackageDTOFilter(sgqlc.types.Input):
2651
2651
 
2652
2652
  class PricePeriodInput(sgqlc.types.Input):
2653
2653
  __schema__ = schema
2654
- __field_names__ = ('billing_country_code', 'billing_period', 'price', 'tiers')
2654
+ __field_names__ = ('billing_country_code', 'billing_period', 'block_size', 'price', 'tiers')
2655
2655
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
2656
2656
  billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
2657
+ block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
2657
2658
  price = sgqlc.types.Field(MoneyInputDTO, graphql_name='price')
2658
2659
  tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTierInput')), graphql_name='tiers')
2659
2660
 
@@ -4094,7 +4095,7 @@ class AdditionalMetaDataChange(sgqlc.types.Type):
4094
4095
 
4095
4096
  class Addon(sgqlc.types.Type):
4096
4097
  __schema__ = schema
4097
- __field_names__ = ('additional_meta_data', 'billing_id', 'billing_link_url', 'created_at', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'is_latest', 'max_quantity', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
4098
+ __field_names__ = ('additional_meta_data', 'billing_id', 'billing_link_url', 'created_at', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'has_subscriptions', 'hidden_from_widgets', 'id', 'is_latest', 'max_quantity', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
4098
4099
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
4099
4100
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
4100
4101
  billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
@@ -4106,6 +4107,7 @@ class Addon(sgqlc.types.Type):
4106
4107
  entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlement')), graphql_name='entitlements')
4107
4108
  environment = sgqlc.types.Field(sgqlc.types.non_null('Environment'), graphql_name='environment')
4108
4109
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
4110
+ has_subscriptions = sgqlc.types.Field(Boolean, graphql_name='hasSubscriptions')
4109
4111
  hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
4110
4112
  id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
4111
4113
  is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
@@ -7177,12 +7179,13 @@ class PlanSumAggregate(sgqlc.types.Type):
7177
7179
 
7178
7180
  class Price(sgqlc.types.Type):
7179
7181
  __schema__ = schema
7180
- __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7182
+ __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7181
7183
  billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
7182
7184
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
7183
7185
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7184
7186
  billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
7185
7187
  billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
7188
+ block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
7186
7189
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
7187
7190
  crm_id = sgqlc.types.Field(String, graphql_name='crmId')
7188
7191
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
@@ -7225,12 +7228,13 @@ class PriceCountAggregate(sgqlc.types.Type):
7225
7228
 
7226
7229
  class PriceDeleteResponse(sgqlc.types.Type):
7227
7230
  __schema__ = schema
7228
- __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7231
+ __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7229
7232
  billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
7230
7233
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
7231
7234
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7232
7235
  billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
7233
7236
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
7237
+ block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
7234
7238
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
7235
7239
  crm_id = sgqlc.types.Field(String, graphql_name='crmId')
7236
7240
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')