code: types,hpp,dbal (1 files)

This commit is contained in:
2025-12-26 06:06:25 +00:00
parent 87421ea16a
commit da0c42ce33

View File

@@ -121,6 +121,17 @@ struct UpdateComponentHierarchyInput {
std::optional<Json> 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;