Hi!
The wording of the title of this topic is unideal, but this is precisely what I’m trying to do: generate a documentation (pdf or whatever format) of the automations set in the base.
As an example, it is easy to generate a document of all the tables and fields using the following:
for (const table of base.tables) {
output.text(table.name);
output.table(table.fields);
}
However, there doesn’t seem to be a way to extract the definition/configuration of automations. Am I missing something?
Best,
Ludo