stigg-api-client 2.359.0__tar.gz → 2.367.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.359.0
3
+ Version: 2.367.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 = "2.359.0"
3
+ version = "2.367.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -4199,7 +4199,8 @@ class TriggerSubscriptionUsageSyncInput(sgqlc.types.Input):
4199
4199
 
4200
4200
  class TriggerWorkflowInput(sgqlc.types.Input):
4201
4201
  __schema__ = schema
4202
- __field_names__ = ('payload', 'trigger_id')
4202
+ __field_names__ = ('is_test', 'payload', 'trigger_id')
4203
+ is_test = sgqlc.types.Field(Boolean, graphql_name='isTest')
4203
4204
  payload = sgqlc.types.Field(JSON, graphql_name='payload')
4204
4205
  trigger_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='triggerId')
4205
4206
 
@@ -6025,11 +6026,15 @@ class EnvironmentMissingError(sgqlc.types.Type):
6025
6026
 
6026
6027
  class EventActorInfo(sgqlc.types.Type):
6027
6028
  __schema__ = schema
6028
- __field_names__ = ('email', 'ip_address', 'name', 'type')
6029
+ __field_names__ = ('email', 'ip_address', 'name', 'type', 'workflow_execution_id', 'workflow_execution_time', 'workflow_id', 'workflow_name')
6029
6030
  email = sgqlc.types.Field(String, graphql_name='email')
6030
6031
  ip_address = sgqlc.types.Field(String, graphql_name='ipAddress')
6031
6032
  name = sgqlc.types.Field(String, graphql_name='name')
6032
6033
  type = sgqlc.types.Field(EventActor, graphql_name='type')
6034
+ workflow_execution_id = sgqlc.types.Field(String, graphql_name='workflowExecutionId')
6035
+ workflow_execution_time = sgqlc.types.Field(String, graphql_name='workflowExecutionTime')
6036
+ workflow_id = sgqlc.types.Field(String, graphql_name='workflowId')
6037
+ workflow_name = sgqlc.types.Field(String, graphql_name='workflowName')
6033
6038
 
6034
6039
 
6035
6040
  class EventLog(sgqlc.types.Type):