stigg-api-client 1.187.0__tar.gz → 1.189.1__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-1.187.0 → stigg_api_client-1.189.1}/PKG-INFO +1 -1
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/pyproject.toml +1 -1
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/stigg/generated/schema.py +5 -2
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/LICENSE +0 -0
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/README.md +0 -0
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/stigg/__init__.py +0 -0
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/stigg/client.py +0 -0
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-1.187.0 → stigg_api_client-1.189.1}/stigg/generated/operations.py +0 -0
|
@@ -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
|
|
|
@@ -9094,11 +9095,13 @@ class UpdateEntitlementsOrderDTO(sgqlc.types.Type):
|
|
|
9094
9095
|
|
|
9095
9096
|
class UsageEvent(sgqlc.types.Type):
|
|
9096
9097
|
__schema__ = schema
|
|
9097
|
-
__field_names__ = ('customer_id', 'dimensions', 'event_name', 'id', 'resource_id', 'timestamp')
|
|
9098
|
+
__field_names__ = ('customer', 'customer_id', 'dimensions', 'event_name', 'id', 'idempotency_key', 'resource_id', 'timestamp')
|
|
9099
|
+
customer = sgqlc.types.Field(Customer, graphql_name='customer')
|
|
9098
9100
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
9099
9101
|
dimensions = sgqlc.types.Field(JSON, graphql_name='dimensions')
|
|
9100
9102
|
event_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='eventName')
|
|
9101
9103
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
9104
|
+
idempotency_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='idempotencyKey')
|
|
9102
9105
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
9103
9106
|
timestamp = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='timestamp')
|
|
9104
9107
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|