stigg-api-client 3.116.2__py3-none-any.whl → 3.120.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.116.2.dist-info → stigg_api_client-3.120.0.dist-info}/METADATA +1 -1
- {stigg_api_client-3.116.2.dist-info → stigg_api_client-3.120.0.dist-info}/RECORD +5 -5
- {stigg_api_client-3.116.2.dist-info → stigg_api_client-3.120.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.116.2.dist-info → stigg_api_client-3.120.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__ = ('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):
|
|
@@ -10896,14 +10899,17 @@ class SubscriptionQuery(sgqlc.types.Type):
|
|
|
10896
10899
|
|
|
10897
10900
|
class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
|
|
10898
10901
|
__schema__ = schema
|
|
10899
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10902
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10903
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10900
10904
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10901
10905
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10902
10906
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10903
10907
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10904
10908
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10909
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10905
10910
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10906
10911
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10912
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10907
10913
|
|
|
10908
10914
|
|
|
10909
10915
|
class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
@@ -10916,14 +10922,17 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
|
10916
10922
|
|
|
10917
10923
|
class SubscriptionQueryCountAggregate(sgqlc.types.Type):
|
|
10918
10924
|
__schema__ = schema
|
|
10919
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10925
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10926
|
+
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
10920
10927
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
10921
10928
|
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
10922
10929
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
10923
10930
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
10924
10931
|
resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
|
|
10932
|
+
salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
|
|
10925
10933
|
start_date = sgqlc.types.Field(Int, graphql_name='startDate')
|
|
10926
10934
|
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
10935
|
+
subscription_id = sgqlc.types.Field(Int, graphql_name='subscriptionId')
|
|
10927
10936
|
|
|
10928
10937
|
|
|
10929
10938
|
class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
@@ -10935,26 +10944,32 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
|
10935
10944
|
|
|
10936
10945
|
class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
10937
10946
|
__schema__ = schema
|
|
10938
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10947
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10948
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10939
10949
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10940
10950
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10941
10951
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10942
10952
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10943
10953
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10954
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10944
10955
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10945
10956
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10957
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10946
10958
|
|
|
10947
10959
|
|
|
10948
10960
|
class SubscriptionQueryMinAggregate(sgqlc.types.Type):
|
|
10949
10961
|
__schema__ = schema
|
|
10950
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10962
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10963
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10951
10964
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10952
10965
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10953
10966
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10954
10967
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10955
10968
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10969
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10956
10970
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10957
10971
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10972
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10958
10973
|
|
|
10959
10974
|
|
|
10960
10975
|
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.
|
|
7
|
-
stigg_api_client-3.
|
|
8
|
-
stigg_api_client-3.
|
|
9
|
-
stigg_api_client-3.
|
|
5
|
+
stigg/generated/schema.py,sha256=Gci6OVSVGQf7TsRpN3i39dber52Hv87XQSpuEovJSbQ,738454
|
|
6
|
+
stigg_api_client-3.120.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.120.0.dist-info/METADATA,sha256=QLQNfu4Arvy2ngS9vapPANcgp6DOR19rNvzLd9DgHVg,3198
|
|
8
|
+
stigg_api_client-3.120.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.120.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|