37 lines
950 B
Python
37 lines
950 B
Python
from app.nodes.advanced import (
|
|
DelayExecutor,
|
|
GoToExecutor,
|
|
LoopExecutor,
|
|
RandomExecutor,
|
|
SwitchExecutor,
|
|
)
|
|
from app.nodes.ai import AIResponseExecutor, AISentimentExecutor
|
|
from app.nodes.base import NodeExecutor, NodeRegistry
|
|
from app.nodes.basic import (
|
|
ButtonsExecutor,
|
|
ConditionExecutor,
|
|
MessageExecutor,
|
|
SetVariableExecutor,
|
|
TriggerExecutor,
|
|
WaitInputExecutor,
|
|
)
|
|
from app.nodes.script import HttpRequestExecutor, JavaScriptExecutor
|
|
from app.nodes.validation import (
|
|
ValidateDateExecutor,
|
|
ValidateEmailExecutor,
|
|
ValidateNumberExecutor,
|
|
ValidateOptionsExecutor,
|
|
ValidatePhoneExecutor,
|
|
ValidateRegexExecutor,
|
|
)
|
|
from app.nodes.odoo import (
|
|
OdooSearchPartnerExecutor,
|
|
OdooCreatePartnerExecutor,
|
|
OdooGetBalanceExecutor,
|
|
OdooSearchOrdersExecutor,
|
|
OdooGetOrderExecutor,
|
|
OdooSearchProductsExecutor,
|
|
OdooCheckStockExecutor,
|
|
OdooCreateLeadExecutor,
|
|
)
|