stigg-api-client 2.122.0__tar.gz → 2.131.1__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.122.0
3
+ Version: 2.131.1
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.122.0"
3
+ version = "2.131.1"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -954,6 +954,7 @@ def fragment_customer_portal_subscription_price_fragment():
954
954
  def fragment_customer_portal_subscription_fragment():
955
955
  _frag = sgqlc.operation.Fragment(_schema.CustomerPortalSubscription, 'CustomerPortalSubscriptionFragment')
956
956
  _frag.subscription_id()
957
+ _frag.plan_id()
957
958
  _frag.plan_name()
958
959
  _frag.pricing_type()
959
960
  _frag_prices = _frag.prices()
@@ -5165,9 +5165,10 @@ class CustomerPortalPromotionalEntitlement(sgqlc.types.Type):
5165
5165
 
5166
5166
  class CustomerPortalSubscription(sgqlc.types.Type):
5167
5167
  __schema__ = schema
5168
- __field_names__ = ('addons', 'billing_period_range', 'plan_name', 'prices', 'pricing', 'pricing_type', 'scheduled_updates', 'status', 'subscription_id', 'total_price', 'trial_remaining_days')
5168
+ __field_names__ = ('addons', 'billing_period_range', 'plan_id', 'plan_name', 'prices', 'pricing', 'pricing_type', 'scheduled_updates', 'status', 'subscription_id', 'total_price', 'trial_remaining_days')
5169
5169
  addons = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CustomerPortalAddon))), graphql_name='addons')
5170
5170
  billing_period_range = sgqlc.types.Field('DateRange', graphql_name='billingPeriodRange')
5171
+ plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
5171
5172
  plan_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planName')
5172
5173
  prices = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CustomerPortalSubscriptionPrice'))), graphql_name='prices')
5173
5174
  pricing = sgqlc.types.Field(sgqlc.types.non_null('CustomerPortalSubscriptionPricing'), graphql_name='pricing')
@@ -5931,9 +5932,11 @@ class ExperimentSumAggregate(sgqlc.types.Type):
5931
5932
 
5932
5933
  class FailedToImportCustomerError(sgqlc.types.Type):
5933
5934
  __schema__ = schema
5934
- __field_names__ = ('billing_id', 'code', 'is_validation_error')
5935
+ __field_names__ = ('billing_id', 'code', 'failed_billing_ids', 'failed_customer_ids', 'is_validation_error')
5935
5936
  billing_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='billingId')
5936
5937
  code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='code')
5938
+ failed_billing_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))), graphql_name='failedBillingIds')
5939
+ failed_customer_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))), graphql_name='failedCustomerIds')
5937
5940
  is_validation_error = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidationError')
5938
5941
 
5939
5942