stigg-api-client 3.128.0__py3-none-any.whl → 4.5.0__py3-none-any.whl
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/generated/schema.py +21 -6
- {stigg_api_client-3.128.0.dist-info → stigg_api_client-4.5.0.dist-info}/METADATA +1 -1
- stigg_api_client-4.5.0.dist-info/RECORD +9 -0
- stigg_api_client-3.128.0.dist-info/RECORD +0 -9
- {stigg_api_client-3.128.0.dist-info → stigg_api_client-4.5.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.128.0.dist-info → stigg_api_client-4.5.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -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')
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
2
|
+
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
|
+
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
stigg/generated/operations.py,sha256=A9Pa_DQ-Kxo4O_-cfj6trvROz5HCimsbnXCMpcw-wTY,94286
|
|
5
|
+
stigg/generated/schema.py,sha256=O_hkCo189hIGbuWcaRYifYJ5HeBTBJWg15xS3YS9sU0,740433
|
|
6
|
+
stigg_api_client-4.5.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-4.5.0.dist-info/METADATA,sha256=IDUaTl4SVqkQSASywVbDkCbHfA1a1OUPq5avFRtW6po,3196
|
|
8
|
+
stigg_api_client-4.5.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-4.5.0.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
2
|
-
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
|
-
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
stigg/generated/operations.py,sha256=A9Pa_DQ-Kxo4O_-cfj6trvROz5HCimsbnXCMpcw-wTY,94286
|
|
5
|
-
stigg/generated/schema.py,sha256=wm_xwxhzPgaMJDZoVPZF_A-ohyjnpt55-lh6ev5sn58,738852
|
|
6
|
-
stigg_api_client-3.128.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
-
stigg_api_client-3.128.0.dist-info/METADATA,sha256=nnPxGNxzPj6b4pxrhBxCXtEGlC-jg84NfrEuOVTgSvA,3198
|
|
8
|
-
stigg_api_client-3.128.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
-
stigg_api_client-3.128.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|