stigg-api-client 1.222.0__tar.gz → 1.225.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.222.0
3
+ Version: 1.225.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.222.0"
3
+ version = "1.225.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -190,7 +190,7 @@ class EventEntityType(sgqlc.types.Enum):
190
190
 
191
191
  class EventLogSortFields(sgqlc.types.Enum):
192
192
  __schema__ = schema
193
- __choices__ = ('createdAt', 'entityId', 'environmentId', 'eventLogType', 'parentEntityId')
193
+ __choices__ = ('createdAt', 'entityId', 'environmentId', 'eventLogType', 'id', 'parentEntityId')
194
194
 
195
195
 
196
196
  class EventLogType(sgqlc.types.Enum):
@@ -1763,16 +1763,23 @@ class EventLogEventLogTypeFilterComparison(sgqlc.types.Input):
1763
1763
 
1764
1764
  class EventLogFilter(sgqlc.types.Input):
1765
1765
  __schema__ = schema
1766
- __field_names__ = ('and_', 'created_at', 'entity_id', 'environment_id', 'event_log_type', 'or_', 'parent_entity_id')
1766
+ __field_names__ = ('and_', 'created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'or_', 'parent_entity_id')
1767
1767
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='and')
1768
1768
  created_at = sgqlc.types.Field(EventLogCreatedAtFilterComparison, graphql_name='createdAt')
1769
1769
  entity_id = sgqlc.types.Field(EventLogEntityIdFilterComparison, graphql_name='entityId')
1770
1770
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(EventLogEnvironmentIdFilterComparison), graphql_name='environmentId')
1771
1771
  event_log_type = sgqlc.types.Field(EventLogEventLogTypeFilterComparison, graphql_name='eventLogType')
1772
+ id = sgqlc.types.Field('EventLogIdFilterComparison', graphql_name='id')
1772
1773
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='or')
1773
1774
  parent_entity_id = sgqlc.types.Field('EventLogParentEntityIdFilterComparison', graphql_name='parentEntityId')
1774
1775
 
1775
1776
 
1777
+ class EventLogIdFilterComparison(sgqlc.types.Input):
1778
+ __schema__ = schema
1779
+ __field_names__ = ('eq',)
1780
+ eq = sgqlc.types.Field(String, graphql_name='eq')
1781
+
1782
+
1776
1783
  class EventLogParentEntityIdFilterComparison(sgqlc.types.Input):
1777
1784
  __schema__ = schema
1778
1785
  __field_names__ = ('eq', 'in_')
@@ -5662,11 +5669,12 @@ class EventLog(sgqlc.types.Type):
5662
5669
 
5663
5670
  class EventLogAggregateGroupBy(sgqlc.types.Type):
5664
5671
  __schema__ = schema
5665
- __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
5672
+ __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
5666
5673
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
5667
5674
  entity_id = sgqlc.types.Field(String, graphql_name='entityId')
5668
5675
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
5669
5676
  event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
5677
+ id = sgqlc.types.Field(String, graphql_name='id')
5670
5678
  parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
5671
5679
 
5672
5680
 
@@ -5679,11 +5687,12 @@ class EventLogConnection(sgqlc.types.relay.Connection):
5679
5687
 
5680
5688
  class EventLogCountAggregate(sgqlc.types.Type):
5681
5689
  __schema__ = schema
5682
- __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
5690
+ __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
5683
5691
  created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
5684
5692
  entity_id = sgqlc.types.Field(Int, graphql_name='entityId')
5685
5693
  environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
5686
5694
  event_log_type = sgqlc.types.Field(Int, graphql_name='eventLogType')
5695
+ id = sgqlc.types.Field(Int, graphql_name='id')
5687
5696
  parent_entity_id = sgqlc.types.Field(Int, graphql_name='parentEntityId')
5688
5697
 
5689
5698
 
@@ -5696,21 +5705,23 @@ class EventLogEdge(sgqlc.types.Type):
5696
5705
 
5697
5706
  class EventLogMaxAggregate(sgqlc.types.Type):
5698
5707
  __schema__ = schema
5699
- __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
5708
+ __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
5700
5709
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
5701
5710
  entity_id = sgqlc.types.Field(String, graphql_name='entityId')
5702
5711
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
5703
5712
  event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
5713
+ id = sgqlc.types.Field(String, graphql_name='id')
5704
5714
  parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
5705
5715
 
5706
5716
 
5707
5717
  class EventLogMinAggregate(sgqlc.types.Type):
5708
5718
  __schema__ = schema
5709
- __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
5719
+ __field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
5710
5720
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
5711
5721
  entity_id = sgqlc.types.Field(String, graphql_name='entityId')
5712
5722
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
5713
5723
  event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
5724
+ id = sgqlc.types.Field(String, graphql_name='id')
5714
5725
  parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
5715
5726
 
5716
5727