stigg-api-client 3.128.0__tar.gz → 4.5.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: 3.128.0
3
+ Version: 4.5.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 = "3.128.0"
3
+ version = "4.5.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -542,7 +542,7 @@ class SubscriptionProrationBehavior(sgqlc.types.Enum):
542
542
 
543
543
  class SubscriptionQuerySortFields(sgqlc.types.Enum):
544
544
  __schema__ = schema
545
- __choices__ = ('billingId', 'createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'salesforceId', 'startDate', 'status', 'subscriptionId')
545
+ __choices__ = ('billingId', 'cancellationDate', 'createdAt', 'customerId', 'endDate', 'environmentId', 'paymentCollection', 'productId', 'resourceId', 'salesforceId', 'startDate', 'status', 'subscriptionId')
546
546
 
547
547
 
548
548
  class SubscriptionScheduleStatus(sgqlc.types.Enum):
@@ -4477,14 +4477,17 @@ class SubscriptionPriceSort(sgqlc.types.Input):
4477
4477
 
4478
4478
  class SubscriptionQueryFilter(sgqlc.types.Input):
4479
4479
  __schema__ = schema
4480
- __field_names__ = ('and_', 'billing_id', 'created_at', 'customer', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
4480
+ __field_names__ = ('and_', 'billing_id', 'cancellation_date', 'created_at', 'customer', 'customer_id', 'end_date', 'environment_id', 'or_', 'payment_collection', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
4481
4481
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='and')
4482
4482
  billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
4483
+ cancellation_date = sgqlc.types.Field(DateFieldComparison, graphql_name='cancellationDate')
4483
4484
  created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
4484
4485
  customer = sgqlc.types.Field('SubscriptionQueryFilterCustomerFilter', graphql_name='customer')
4485
4486
  customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
4487
+ end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='endDate')
4486
4488
  environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
4487
4489
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
4490
+ payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
4488
4491
  product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
4489
4492
  resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
4490
4493
  salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
@@ -10903,11 +10906,14 @@ class SubscriptionQuery(sgqlc.types.Type):
10903
10906
 
10904
10907
  class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
10905
10908
  __schema__ = schema
10906
- __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10909
+ __field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10907
10910
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
10911
+ cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
10908
10912
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10909
10913
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10914
+ end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
10910
10915
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10916
+ payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
10911
10917
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10912
10918
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10913
10919
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
@@ -10926,11 +10932,14 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
10926
10932
 
10927
10933
  class SubscriptionQueryCountAggregate(sgqlc.types.Type):
10928
10934
  __schema__ = schema
10929
- __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10935
+ __field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10930
10936
  billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
10937
+ cancellation_date = sgqlc.types.Field(Int, graphql_name='cancellationDate')
10931
10938
  created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
10932
10939
  customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
10940
+ end_date = sgqlc.types.Field(Int, graphql_name='endDate')
10933
10941
  environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
10942
+ payment_collection = sgqlc.types.Field(Int, graphql_name='paymentCollection')
10934
10943
  product_id = sgqlc.types.Field(Int, graphql_name='productId')
10935
10944
  resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
10936
10945
  salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
@@ -10948,11 +10957,14 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
10948
10957
 
10949
10958
  class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
10950
10959
  __schema__ = schema
10951
- __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10960
+ __field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10952
10961
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
10962
+ cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
10953
10963
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10954
10964
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10965
+ end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
10955
10966
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10967
+ payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
10956
10968
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10957
10969
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10958
10970
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
@@ -10963,11 +10975,14 @@ class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
10963
10975
 
10964
10976
  class SubscriptionQueryMinAggregate(sgqlc.types.Type):
10965
10977
  __schema__ = schema
10966
- __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10978
+ __field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10967
10979
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
10980
+ cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
10968
10981
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10969
10982
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10983
+ end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
10970
10984
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10985
+ payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
10971
10986
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10972
10987
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10973
10988
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')