diff --git a/api/core/workflow/nodes/tool/entities.py b/api/core/workflow/nodes/tool/entities.py index c1cfbb1edc..bf7b56e147 100644 --- a/api/core/workflow/nodes/tool/entities.py +++ b/api/core/workflow/nodes/tool/entities.py @@ -16,6 +16,7 @@ class ToolEntity(BaseModel): tool_configurations: dict[str, Any] credential_id: str | None = None plugin_unique_identifier: str | None = None # redundancy + auth_type: Literal["workspace", "end_user"] = "workspace" # OAuth authentication level @field_validator("tool_configurations", mode="before") @classmethod