Files
Dorod-Sky/skyvern/forge/sdk/db/enums.py
stenn930 a29a2bc49b Azure ClientSecretCredential support (#3456)
Co-authored-by: Suchintan <suchintan@users.noreply.github.com>
Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
2025-09-23 12:16:48 -04:00

14 lines
322 B
Python

from enum import StrEnum
class OrganizationAuthTokenType(StrEnum):
api = "api"
onepassword_service_account = "onepassword_service_account"
azure_client_secret_credential = "azure_client_secret_credential"
class TaskType(StrEnum):
general = "general"
validation = "validation"
action = "action"