From da0c42ce33406d6a244ce45facbee3dfbdb799d5 Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Fri, 26 Dec 2025 06:06:25 +0000 Subject: [PATCH] code: types,hpp,dbal (1 files) --- dbal/cpp/include/dbal/core/types.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dbal/cpp/include/dbal/core/types.hpp b/dbal/cpp/include/dbal/core/types.hpp index e487a134d..e8b14f392 100644 --- a/dbal/cpp/include/dbal/core/types.hpp +++ b/dbal/cpp/include/dbal/core/types.hpp @@ -121,6 +121,17 @@ struct UpdateComponentHierarchyInput { std::optional props; }; +struct ComponentOrderUpdate { + std::string id; + int order = 0; +}; + +struct MoveComponentInput { + std::string id; + std::string new_parent_id; + int order = 0; +}; + struct Workflow { std::string id; std::string name;