mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
26 lines
547 B
Python
26 lines
547 B
Python
"""Schemas for the automation definition and per-type configs."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .actions import AgentTaskActionParams
|
|
from .definition import (
|
|
AutomationDefinition,
|
|
Execution,
|
|
Inputs,
|
|
Metadata,
|
|
PlanStep,
|
|
TriggerSpec,
|
|
)
|
|
from .triggers import ManualTriggerParams, ScheduleTriggerParams
|
|
|
|
__all__ = [
|
|
"AgentTaskActionParams",
|
|
"AutomationDefinition",
|
|
"Execution",
|
|
"Inputs",
|
|
"ManualTriggerParams",
|
|
"Metadata",
|
|
"PlanStep",
|
|
"ScheduleTriggerParams",
|
|
"TriggerSpec",
|
|
]
|