stigg-api-client 2.354.2__tar.gz → 2.361.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: 2.354.2
3
+ Version: 2.361.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.354.2"
3
+ version = "2.361.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -57,7 +57,7 @@ class ApiKeySortFields(sgqlc.types.Enum):
57
57
 
58
58
  class ApiKeyType(sgqlc.types.Enum):
59
59
  __schema__ = schema
60
- __choices__ = ('CLIENT', 'SALESFORCE', 'SERVER')
60
+ __choices__ = ('CLIENT', 'SALESFORCE', 'SERVER', 'WORKFLOW')
61
61
 
62
62
 
63
63
  class Auth0ApplicationType(sgqlc.types.Enum):
@@ -205,7 +205,7 @@ class ErrorCode(sgqlc.types.Enum):
205
205
 
206
206
  class EventActor(sgqlc.types.Enum):
207
207
  __schema__ = schema
208
- __choices__ = ('APP_CUSTOMER', 'APP_PUBLIC', 'APP_SERVER', 'AWS', 'IMPORT', 'MIGRATION', 'SALESFORCE', 'SCHEDULER', 'SERVICE', 'STRIPE', 'SUPPORT', 'SYSTEM', 'USER')
208
+ __choices__ = ('APP_CUSTOMER', 'APP_PUBLIC', 'APP_SERVER', 'AWS', 'IMPORT', 'MIGRATION', 'SALESFORCE', 'SCHEDULER', 'SERVICE', 'STRIPE', 'SUPPORT', 'SYSTEM', 'USER', 'WORKFLOW')
209
209
 
210
210
 
211
211
  class EventEntityType(sgqlc.types.Enum):
@@ -6025,11 +6025,15 @@ class EnvironmentMissingError(sgqlc.types.Type):
6025
6025
 
6026
6026
  class EventActorInfo(sgqlc.types.Type):
6027
6027
  __schema__ = schema
6028
- __field_names__ = ('email', 'ip_address', 'name', 'type')
6028
+ __field_names__ = ('email', 'ip_address', 'name', 'type', 'workflow_execution_id', 'workflow_execution_time', 'workflow_id', 'workflow_name')
6029
6029
  email = sgqlc.types.Field(String, graphql_name='email')
6030
6030
  ip_address = sgqlc.types.Field(String, graphql_name='ipAddress')
6031
6031
  name = sgqlc.types.Field(String, graphql_name='name')
6032
6032
  type = sgqlc.types.Field(EventActor, graphql_name='type')
6033
+ workflow_execution_id = sgqlc.types.Field(String, graphql_name='workflowExecutionId')
6034
+ workflow_execution_time = sgqlc.types.Field(String, graphql_name='workflowExecutionTime')
6035
+ workflow_id = sgqlc.types.Field(String, graphql_name='workflowId')
6036
+ workflow_name = sgqlc.types.Field(String, graphql_name='workflowName')
6033
6037
 
6034
6038
 
6035
6039
  class EventLog(sgqlc.types.Type):