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.
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/PKG-INFO +1 -1
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/pyproject.toml +1 -1
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/stigg/generated/schema.py +7 -3
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/LICENSE +0 -0
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/README.md +0 -0
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/stigg/client.py +0 -0
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.354.2 → stigg_api_client-2.361.0}/stigg/generated/operations.py +0 -0
|
@@ -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):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|