stigg-api-client 3.116.0__py3-none-any.whl → 3.116.2__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 +6 -21
- {stigg_api_client-3.116.0.dist-info → stigg_api_client-3.116.2.dist-info}/METADATA +1 -1
- {stigg_api_client-3.116.0.dist-info → stigg_api_client-3.116.2.dist-info}/RECORD +5 -5
- {stigg_api_client-3.116.0.dist-info → stigg_api_client-3.116.2.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.116.0.dist-info → stigg_api_client-3.116.2.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__ = ('
|
|
545
|
+
__choices__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'startDate', 'status')
|
|
546
546
|
|
|
547
547
|
|
|
548
548
|
class SubscriptionScheduleStatus(sgqlc.types.Enum):
|
|
@@ -4475,9 +4475,8 @@ class SubscriptionPriceSort(sgqlc.types.Input):
|
|
|
4475
4475
|
|
|
4476
4476
|
class SubscriptionQueryFilter(sgqlc.types.Input):
|
|
4477
4477
|
__schema__ = schema
|
|
4478
|
-
__field_names__ = ('and_', '
|
|
4478
|
+
__field_names__ = ('and_', 'created_at', 'customer', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'start_date', 'status')
|
|
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')
|
|
4481
4480
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4482
4481
|
customer = sgqlc.types.Field('SubscriptionQueryFilterCustomerFilter', graphql_name='customer')
|
|
4483
4482
|
customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
|
|
@@ -4485,10 +4484,8 @@ class SubscriptionQueryFilter(sgqlc.types.Input):
|
|
|
4485
4484
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
|
|
4486
4485
|
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
4487
4486
|
resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
|
|
4488
|
-
salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
|
|
4489
4487
|
start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
|
|
4490
4488
|
status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
|
|
4491
|
-
subscription_id = sgqlc.types.Field(StringFieldComparison, graphql_name='subscriptionId')
|
|
4492
4489
|
|
|
4493
4490
|
|
|
4494
4491
|
class SubscriptionQueryFilterCustomerFilter(sgqlc.types.Input):
|
|
@@ -10899,17 +10896,14 @@ class SubscriptionQuery(sgqlc.types.Type):
|
|
|
10899
10896
|
|
|
10900
10897
|
class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
|
|
10901
10898
|
__schema__ = schema
|
|
10902
|
-
__field_names__ = ('
|
|
10903
|
-
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10899
|
+
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10904
10900
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10905
10901
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10906
10902
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10907
10903
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10908
10904
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10909
|
-
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10910
10905
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10911
10906
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10912
|
-
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10913
10907
|
|
|
10914
10908
|
|
|
10915
10909
|
class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
@@ -10922,17 +10916,14 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
|
10922
10916
|
|
|
10923
10917
|
class SubscriptionQueryCountAggregate(sgqlc.types.Type):
|
|
10924
10918
|
__schema__ = schema
|
|
10925
|
-
__field_names__ = ('
|
|
10926
|
-
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
10919
|
+
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10927
10920
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
10928
10921
|
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
10929
10922
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
10930
10923
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
10931
10924
|
resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
|
|
10932
|
-
salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
|
|
10933
10925
|
start_date = sgqlc.types.Field(Int, graphql_name='startDate')
|
|
10934
10926
|
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
10935
|
-
subscription_id = sgqlc.types.Field(Int, graphql_name='subscriptionId')
|
|
10936
10927
|
|
|
10937
10928
|
|
|
10938
10929
|
class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
@@ -10944,32 +10935,26 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
|
10944
10935
|
|
|
10945
10936
|
class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
10946
10937
|
__schema__ = schema
|
|
10947
|
-
__field_names__ = ('
|
|
10948
|
-
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10938
|
+
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10949
10939
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10950
10940
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10951
10941
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10952
10942
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10953
10943
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10954
|
-
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10955
10944
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10956
10945
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10957
|
-
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10958
10946
|
|
|
10959
10947
|
|
|
10960
10948
|
class SubscriptionQueryMinAggregate(sgqlc.types.Type):
|
|
10961
10949
|
__schema__ = schema
|
|
10962
|
-
__field_names__ = ('
|
|
10963
|
-
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10950
|
+
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10964
10951
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10965
10952
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10966
10953
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10967
10954
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10968
10955
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10969
|
-
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10970
10956
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10971
10957
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10972
|
-
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10973
10958
|
|
|
10974
10959
|
|
|
10975
10960
|
class SubscriptionScheduledUpdate(sgqlc.types.Type):
|
|
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
|
2
2
|
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
3
|
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
stigg/generated/operations.py,sha256=A9Pa_DQ-Kxo4O_-cfj6trvROz5HCimsbnXCMpcw-wTY,94286
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-3.116.
|
|
7
|
-
stigg_api_client-3.116.
|
|
8
|
-
stigg_api_client-3.116.
|
|
9
|
-
stigg_api_client-3.116.
|
|
5
|
+
stigg/generated/schema.py,sha256=5HxMlyvlIvBitS6k8y1iHbGmwSgtysqOHUqZnZ0jEM4,737006
|
|
6
|
+
stigg_api_client-3.116.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.116.2.dist-info/METADATA,sha256=B96Q-_L-UfpJxgYOZIz_BTMPezPnf_KQJWs0ezS-jM8,3198
|
|
8
|
+
stigg_api_client-3.116.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.116.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|