stigg-api-client 1.112.0__tar.gz → 1.113.0__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.112.0
3
+ Version: 1.113.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "1.112.0"
3
+ version = "1.113.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1647,9 +1647,13 @@ class EstimateSubscriptionUpdateInput(sgqlc.types.Input):
1647
1647
 
1648
1648
  class EventsFieldsInput(sgqlc.types.Input):
1649
1649
  __schema__ = schema
1650
- __field_names__ = ('environment_id', 'filters')
1650
+ __field_names__ = ('customer_id', 'environment_id', 'filters', 'meter_id', 'resource_id', 'unique_values_limit')
1651
+ customer_id = sgqlc.types.Field(String, graphql_name='customerId')
1651
1652
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
1652
1653
  filters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterFilterDefinitionInput')), graphql_name='filters')
1654
+ meter_id = sgqlc.types.Field(String, graphql_name='meterId')
1655
+ resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
1656
+ unique_values_limit = sgqlc.types.Field(Float, graphql_name='uniqueValuesLimit')
1653
1657
 
1654
1658
 
1655
1659
  class EventsListInput(sgqlc.types.Input):