code: hpp,dbal,cpp (2 files)

This commit is contained in:
2025-12-26 06:16:56 +00:00
parent 395718da9f
commit d31131dc33
2 changed files with 4 additions and 0 deletions

View File

@@ -62,6 +62,9 @@ public:
Result<std::vector<ComponentHierarchy>> getComponentTree(const std::string& page_id);
Result<bool> reorderComponents(const std::vector<ComponentOrderUpdate>& updates);
Result<ComponentHierarchy> moveComponent(const MoveComponentInput& input);
Result<std::vector<ComponentHierarchy>> searchComponents(const std::string& query,
const std::optional<std::string>& page_id = std::nullopt,
int limit = 20);
Result<Workflow> createWorkflow(const CreateWorkflowInput& input);
Result<Workflow> getWorkflow(const std::string& id);

View File

@@ -9,5 +9,6 @@
#include "crud/reorder_components.hpp"
#include "crud/move_component.hpp"
#include "crud/get_tree.hpp"
#include "crud/search_components.hpp"
#endif