stigg-api-client 1.70.0__tar.gz → 1.73.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.70.0
3
+ Version: 1.73.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.70.0"
3
+ version = "1.73.0"
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
 
@@ -2953,10 +2954,20 @@ class PublishPackageGroup(sgqlc.types.Input):
2953
2954
 
2954
2955
  class RecalculateEntitlementsInput(sgqlc.types.Input):
2955
2956
  __schema__ = schema
2956
- __field_names__ = ('customer_ids', 'environment_id', 'for_all_customers')
2957
+ __field_names__ = ('customer_ids', 'environment_id', 'for_all_customers', 'side_effects_options')
2957
2958
  customer_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='customerIds')
2958
2959
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
2959
2960
  for_all_customers = sgqlc.types.Field(Boolean, graphql_name='forAllCustomers')
2961
+ side_effects_options = sgqlc.types.Field('RecalculateEntitlementsSideEffectsOptionsInput', graphql_name='sideEffectsOptions')
2962
+
2963
+
2964
+ class RecalculateEntitlementsSideEffectsOptionsInput(sgqlc.types.Input):
2965
+ __schema__ = schema
2966
+ __field_names__ = ('skip_publish_to_subscribers', 'skip_write_to_cache', 'skip_write_to_data_catalog', 'skip_write_to_event_log')
2967
+ skip_publish_to_subscribers = sgqlc.types.Field(Boolean, graphql_name='skipPublishToSubscribers')
2968
+ skip_write_to_cache = sgqlc.types.Field(Boolean, graphql_name='skipWriteToCache')
2969
+ skip_write_to_data_catalog = sgqlc.types.Field(Boolean, graphql_name='skipWriteToDataCatalog')
2970
+ skip_write_to_event_log = sgqlc.types.Field(Boolean, graphql_name='skipWriteToEventLog')
2960
2971
 
2961
2972
 
2962
2973
  class RemoveBasePlanFromPlanInput(sgqlc.types.Input):
@@ -7167,12 +7178,13 @@ class PlanSumAggregate(sgqlc.types.Type):
7167
7178
 
7168
7179
  class Price(sgqlc.types.Type):
7169
7180
  __schema__ = schema
7170
- __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')
7181
+ __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')
7171
7182
  billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
7172
7183
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
7173
7184
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7174
7185
  billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
7175
7186
  billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
7187
+ block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
7176
7188
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
7177
7189
  crm_id = sgqlc.types.Field(String, graphql_name='crmId')
7178
7190
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
@@ -7215,12 +7227,13 @@ class PriceCountAggregate(sgqlc.types.Type):
7215
7227
 
7216
7228
  class PriceDeleteResponse(sgqlc.types.Type):
7217
7229
  __schema__ = schema
7218
- __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')
7230
+ __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')
7219
7231
  billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
7220
7232
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
7221
7233
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7222
7234
  billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
7223
7235
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
7236
+ block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
7224
7237
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
7225
7238
  crm_id = sgqlc.types.Field(String, graphql_name='crmId')
7226
7239
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')