chore: cleanup of allium specs

This commit is contained in:
2026-04-23 11:04:21 +02:00
parent bb5e0e83e2
commit 871ed3192e
7 changed files with 66 additions and 10 deletions

View File

@@ -9,13 +9,18 @@ config {
script_extension: String = "script"
}
enum ScriptStatus {
draft
published
}
entity Script {
slug: String
title: String
kind: macro | utility | transform
entrypoint: String -- default: "render" for macros
enabled: Boolean
status: draft | published
status: ScriptStatus
content: String?
version: Integer
file_path: String