stigg-api-client 2.71.1__tar.gz → 2.76.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: 2.71.1
3
+ Version: 2.76.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 = "2.71.1"
3
+ version = "2.76.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -2872,7 +2872,8 @@ class PriceFilterPackageDTOFilter(sgqlc.types.Input):
2872
2872
 
2873
2873
  class PriceOverrideInput(sgqlc.types.Input):
2874
2874
  __schema__ = schema
2875
- __field_names__ = ('base_charge', 'block_size', 'feature_id', 'price', 'tiers')
2875
+ __field_names__ = ('addon_id', 'base_charge', 'block_size', 'feature_id', 'price', 'tiers')
2876
+ addon_id = sgqlc.types.Field(String, graphql_name='addonId')
2876
2877
  base_charge = sgqlc.types.Field(Boolean, graphql_name='baseCharge')
2877
2878
  block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
2878
2879
  feature_id = sgqlc.types.Field(String, graphql_name='featureId')
@@ -2908,14 +2909,18 @@ class PriceTierInput(sgqlc.types.Input):
2908
2909
 
2909
2910
  class PricingModelCreateInput(sgqlc.types.Input):
2910
2911
  __schema__ = schema
2911
- __field_names__ = ('billing_cadence', 'billing_model', 'feature_id', 'max_unit_quantity', 'min_unit_quantity', 'price_periods', 'tiers_mode')
2912
+ __field_names__ = ('billing_cadence', 'billing_model', 'feature_id', 'max_unit_quantity', 'min_unit_quantity', 'monthly_reset_period_configuration', 'price_periods', 'reset_period', 'tiers_mode', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
2912
2913
  billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
2913
2914
  billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
2914
2915
  feature_id = sgqlc.types.Field(String, graphql_name='featureId')
2915
2916
  max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
2916
2917
  min_unit_quantity = sgqlc.types.Field(Float, graphql_name='minUnitQuantity')
2918
+ monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
2917
2919
  price_periods = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PricePeriodInput))), graphql_name='pricePeriods')
2920
+ reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
2918
2921
  tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
2922
+ weekly_reset_period_configuration = sgqlc.types.Field('WeeklyResetPeriodConfigInput', graphql_name='weeklyResetPeriodConfiguration')
2923
+ yearly_reset_period_configuration = sgqlc.types.Field('YearlyResetPeriodConfigInput', graphql_name='yearlyResetPeriodConfiguration')
2919
2924
 
2920
2925
 
2921
2926
  class PricingTypeFilterComparison(sgqlc.types.Input):
@@ -7710,7 +7715,7 @@ class PreparedPaymentMethodForm(sgqlc.types.Type):
7710
7715
 
7711
7716
  class Price(sgqlc.types.Type):
7712
7717
  __schema__ = schema
7713
- __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'is_override_price', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7718
+ __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'is_override_price', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'reset_period', 'reset_period_configuration', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7714
7719
  billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
7715
7720
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
7716
7721
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
@@ -7730,6 +7735,8 @@ class Price(sgqlc.types.Type):
7730
7735
  package = sgqlc.types.Field(sgqlc.types.non_null(PackageDTO), graphql_name='package')
7731
7736
  package_id = sgqlc.types.Field(String, graphql_name='packageId')
7732
7737
  price = sgqlc.types.Field(Money, graphql_name='price')
7738
+ reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
7739
+ reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
7733
7740
  tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTier')), graphql_name='tiers')
7734
7741
  tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
7735
7742
  used_in_subscriptions = sgqlc.types.Field(Boolean, graphql_name='usedInSubscriptions')
@@ -7761,7 +7768,7 @@ class PriceCountAggregate(sgqlc.types.Type):
7761
7768
 
7762
7769
  class PriceDeleteResponse(sgqlc.types.Type):
7763
7770
  __schema__ = schema
7764
- __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7771
+ __field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'reset_period', 'reset_period_configuration', 'tiers', 'tiers_mode', 'used_in_subscriptions')
7765
7772
  billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
7766
7773
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
7767
7774
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
@@ -7779,6 +7786,8 @@ class PriceDeleteResponse(sgqlc.types.Type):
7779
7786
  min_unit_quantity = sgqlc.types.Field(Float, graphql_name='minUnitQuantity')
7780
7787
  package_id = sgqlc.types.Field(String, graphql_name='packageId')
7781
7788
  price = sgqlc.types.Field(Money, graphql_name='price')
7789
+ reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
7790
+ reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
7782
7791
  tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTier')), graphql_name='tiers')
7783
7792
  tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
7784
7793
  used_in_subscriptions = sgqlc.types.Field(Boolean, graphql_name='usedInSubscriptions')