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;