stigg-api-client 3.127.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.
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/PKG-INFO +1 -1
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/pyproject.toml +1 -1
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/stigg/generated/schema.py +23 -7
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/LICENSE +0 -0
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/README.md +0 -0
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/stigg/__init__.py +0 -0
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/stigg/client.py +0 -0
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-3.127.0 → stigg_api_client-4.5.0}/stigg/generated/operations.py +0 -0
|
@@ -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')
|
|
@@ -4904,12 +4907,13 @@ class UpdateHook(sgqlc.types.Input):
|
|
|
4904
4907
|
|
|
4905
4908
|
class UpdateIntegrationInput(sgqlc.types.Input):
|
|
4906
4909
|
__schema__ = schema
|
|
4907
|
-
__field_names__ = ('auth0_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4910
|
+
__field_names__ = ('auth0_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4908
4911
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
4909
4912
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
4910
4913
|
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
4911
4914
|
open_fgacredentials = sgqlc.types.Field(OpenFGACredentialsInput, graphql_name='openFGACredentials')
|
|
4912
4915
|
salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
|
|
4916
|
+
snowflake_credentials = sgqlc.types.Field(SnowflakeCredentialsInput, graphql_name='snowflakeCredentials')
|
|
4913
4917
|
stripe_credentials = sgqlc.types.Field('UpdateStripeCredentialsInput', graphql_name='stripeCredentials')
|
|
4914
4918
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
4915
4919
|
zuora_credentials = sgqlc.types.Field('ZuoraCredentialsInput', graphql_name='zuoraCredentials')
|
|
@@ -10902,11 +10906,14 @@ class SubscriptionQuery(sgqlc.types.Type):
|
|
|
10902
10906
|
|
|
10903
10907
|
class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
|
|
10904
10908
|
__schema__ = schema
|
|
10905
|
-
__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')
|
|
10906
10910
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10911
|
+
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
10907
10912
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10908
10913
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10914
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10909
10915
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10916
|
+
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
10910
10917
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10911
10918
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10912
10919
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -10925,11 +10932,14 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
|
10925
10932
|
|
|
10926
10933
|
class SubscriptionQueryCountAggregate(sgqlc.types.Type):
|
|
10927
10934
|
__schema__ = schema
|
|
10928
|
-
__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')
|
|
10929
10936
|
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
10937
|
+
cancellation_date = sgqlc.types.Field(Int, graphql_name='cancellationDate')
|
|
10930
10938
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
10931
10939
|
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
10940
|
+
end_date = sgqlc.types.Field(Int, graphql_name='endDate')
|
|
10932
10941
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
10942
|
+
payment_collection = sgqlc.types.Field(Int, graphql_name='paymentCollection')
|
|
10933
10943
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
10934
10944
|
resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
|
|
10935
10945
|
salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
|
|
@@ -10947,11 +10957,14 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
|
10947
10957
|
|
|
10948
10958
|
class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
10949
10959
|
__schema__ = schema
|
|
10950
|
-
__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')
|
|
10951
10961
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10962
|
+
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
10952
10963
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10953
10964
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10965
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10954
10966
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10967
|
+
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
10955
10968
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10956
10969
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10957
10970
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -10962,11 +10975,14 @@ class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
|
10962
10975
|
|
|
10963
10976
|
class SubscriptionQueryMinAggregate(sgqlc.types.Type):
|
|
10964
10977
|
__schema__ = schema
|
|
10965
|
-
__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')
|
|
10966
10979
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10980
|
+
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
10967
10981
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10968
10982
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10983
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10969
10984
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10985
|
+
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
10970
10986
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10971
10987
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10972
10988
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|