stigg-api-client 1.187.0__py3-none-any.whl → 1.189.3__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 +9 -4
- {stigg_api_client-1.187.0.dist-info → stigg_api_client-1.189.3.dist-info}/METADATA +1 -1
- {stigg_api_client-1.187.0.dist-info → stigg_api_client-1.189.3.dist-info}/RECORD +5 -5
- {stigg_api_client-1.187.0.dist-info → stigg_api_client-1.189.3.dist-info}/LICENSE +0 -0
- {stigg_api_client-1.187.0.dist-info → stigg_api_client-1.189.3.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -4082,7 +4082,8 @@ class UsageEventReportInput(sgqlc.types.Input):
|
|
|
4082
4082
|
|
|
4083
4083
|
class UsageEventsInput(sgqlc.types.Input):
|
|
4084
4084
|
__schema__ = schema
|
|
4085
|
-
__field_names__ = ('environment_id', 'filters')
|
|
4085
|
+
__field_names__ = ('customer_id', 'environment_id', 'filters')
|
|
4086
|
+
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
4086
4087
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
4087
4088
|
filters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MeterFilterDefinitionInput)), graphql_name='filters')
|
|
4088
4089
|
|
|
@@ -7571,7 +7572,7 @@ class PlanSumAggregate(sgqlc.types.Type):
|
|
|
7571
7572
|
|
|
7572
7573
|
class Price(sgqlc.types.Type):
|
|
7573
7574
|
__schema__ = schema
|
|
7574
|
-
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'is_override_price', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7575
|
+
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'is_override_price', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7575
7576
|
billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
|
|
7576
7577
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
7577
7578
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
@@ -7581,6 +7582,7 @@ class Price(sgqlc.types.Type):
|
|
|
7581
7582
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7582
7583
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
7583
7584
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
7585
|
+
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
7584
7586
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
7585
7587
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
7586
7588
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
@@ -7621,7 +7623,7 @@ class PriceCountAggregate(sgqlc.types.Type):
|
|
|
7621
7623
|
|
|
7622
7624
|
class PriceDeleteResponse(sgqlc.types.Type):
|
|
7623
7625
|
__schema__ = schema
|
|
7624
|
-
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7626
|
+
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7625
7627
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
7626
7628
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
7627
7629
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
@@ -7631,6 +7633,7 @@ class PriceDeleteResponse(sgqlc.types.Type):
|
|
|
7631
7633
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7632
7634
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
7633
7635
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
7636
|
+
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
7634
7637
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
7635
7638
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
7636
7639
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
@@ -9094,11 +9097,13 @@ class UpdateEntitlementsOrderDTO(sgqlc.types.Type):
|
|
|
9094
9097
|
|
|
9095
9098
|
class UsageEvent(sgqlc.types.Type):
|
|
9096
9099
|
__schema__ = schema
|
|
9097
|
-
__field_names__ = ('customer_id', 'dimensions', 'event_name', 'id', 'resource_id', 'timestamp')
|
|
9100
|
+
__field_names__ = ('customer', 'customer_id', 'dimensions', 'event_name', 'id', 'idempotency_key', 'resource_id', 'timestamp')
|
|
9101
|
+
customer = sgqlc.types.Field(Customer, graphql_name='customer')
|
|
9098
9102
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
9099
9103
|
dimensions = sgqlc.types.Field(JSON, graphql_name='dimensions')
|
|
9100
9104
|
event_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='eventName')
|
|
9101
9105
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
9106
|
+
idempotency_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='idempotencyKey')
|
|
9102
9107
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
9103
9108
|
timestamp = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='timestamp')
|
|
9104
9109
|
|
|
@@ -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=XpHk4JUXsg1TEwy_43Q4D6MsaYQ8veITNggFZUnpM80,68759
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-1.
|
|
7
|
-
stigg_api_client-1.
|
|
8
|
-
stigg_api_client-1.
|
|
9
|
-
stigg_api_client-1.
|
|
5
|
+
stigg/generated/schema.py,sha256=6wFCTgCmotzTViJPdtXVJYT_M_GDpR_X-IREJIX0UtA,594075
|
|
6
|
+
stigg_api_client-1.189.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-1.189.3.dist-info/METADATA,sha256=op0uJ_YbATXPwqZKBE4ZEYgfTyekGcOoKjQy_AXmnjc,3198
|
|
8
|
+
stigg_api_client-1.189.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-1.189.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|