stigg-api-client 2.129.0__tar.gz → 2.131.2__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.129.0
3
+ Version: 2.131.2
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.129.0"
3
+ version = "2.131.2"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -5932,9 +5932,11 @@ class ExperimentSumAggregate(sgqlc.types.Type):
5932
5932
 
5933
5933
  class FailedToImportCustomerError(sgqlc.types.Type):
5934
5934
  __schema__ = schema
5935
- __field_names__ = ('billing_id', 'code', 'is_validation_error')
5935
+ __field_names__ = ('billing_id', 'code', 'failed_billing_ids', 'failed_customer_ids', 'is_validation_error')
5936
5936
  billing_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='billingId')
5937
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')
5938
5940
  is_validation_error = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidationError')
5939
5941
 
5940
5942