stigg-api-client 3.113.0__tar.gz → 3.115.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.113.0
3
+ Version: 3.115.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.113.0"
3
+ version = "3.115.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__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'startDate', 'status')
545
+ __choices__ = ('billingId', 'createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'salesforceId', 'startDate', 'status', 'subscriptionId')
546
546
 
547
547
 
548
548
  class SubscriptionScheduleStatus(sgqlc.types.Enum):
@@ -4475,8 +4475,9 @@ class SubscriptionPriceSort(sgqlc.types.Input):
4475
4475
 
4476
4476
  class SubscriptionQueryFilter(sgqlc.types.Input):
4477
4477
  __schema__ = schema
4478
- __field_names__ = ('and_', 'created_at', 'customer', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'start_date', 'status')
4478
+ __field_names__ = ('and_', 'billing_id', 'created_at', 'customer', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
4479
4479
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='and')
4480
+ billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
4480
4481
  created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
4481
4482
  customer = sgqlc.types.Field('SubscriptionQueryFilterCustomerFilter', graphql_name='customer')
4482
4483
  customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
@@ -4484,8 +4485,10 @@ class SubscriptionQueryFilter(sgqlc.types.Input):
4484
4485
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
4485
4486
  product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
4486
4487
  resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
4488
+ salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
4487
4489
  start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
4488
4490
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
4491
+ subscription_id = sgqlc.types.Field(StringFieldComparison, graphql_name='subscriptionId')
4489
4492
 
4490
4493
 
4491
4494
  class SubscriptionQueryFilterCustomerFilter(sgqlc.types.Input):
@@ -10895,14 +10898,17 @@ class SubscriptionQuery(sgqlc.types.Type):
10895
10898
 
10896
10899
  class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
10897
10900
  __schema__ = schema
10898
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10901
+ __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10902
+ billing_id = sgqlc.types.Field(String, graphql_name='billingId')
10899
10903
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10900
10904
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10901
10905
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10902
10906
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10903
10907
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10908
+ salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
10904
10909
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
10905
10910
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
10911
+ subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
10906
10912
 
10907
10913
 
10908
10914
  class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
@@ -10915,14 +10921,17 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
10915
10921
 
10916
10922
  class SubscriptionQueryCountAggregate(sgqlc.types.Type):
10917
10923
  __schema__ = schema
10918
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10924
+ __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10925
+ billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
10919
10926
  created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
10920
10927
  customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
10921
10928
  environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
10922
10929
  product_id = sgqlc.types.Field(Int, graphql_name='productId')
10923
10930
  resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
10931
+ salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
10924
10932
  start_date = sgqlc.types.Field(Int, graphql_name='startDate')
10925
10933
  status = sgqlc.types.Field(Int, graphql_name='status')
10934
+ subscription_id = sgqlc.types.Field(Int, graphql_name='subscriptionId')
10926
10935
 
10927
10936
 
10928
10937
  class SubscriptionQueryEdge(sgqlc.types.Type):
@@ -10934,26 +10943,32 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
10934
10943
 
10935
10944
  class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
10936
10945
  __schema__ = schema
10937
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10946
+ __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10947
+ billing_id = sgqlc.types.Field(String, graphql_name='billingId')
10938
10948
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10939
10949
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10940
10950
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10941
10951
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10942
10952
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10953
+ salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
10943
10954
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
10944
10955
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
10956
+ subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
10945
10957
 
10946
10958
 
10947
10959
  class SubscriptionQueryMinAggregate(sgqlc.types.Type):
10948
10960
  __schema__ = schema
10949
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10961
+ __field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
10962
+ billing_id = sgqlc.types.Field(String, graphql_name='billingId')
10950
10963
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10951
10964
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10952
10965
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10953
10966
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10954
10967
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10968
+ salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
10955
10969
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
10956
10970
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
10971
+ subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
10957
10972
 
10958
10973
 
10959
10974
  class SubscriptionScheduledUpdate(sgqlc.types.Type):