feat: make output types workflow-first contracts

This commit is contained in:
2026-04-08 21:43:55 +02:00
parent bd18cccb5e
commit 8c9648d5dc
8 changed files with 1049 additions and 110 deletions
+12 -2
View File
@@ -1,3 +1,13 @@
# Compat shim — use app.domains.rendering.models instead
from app.domains.rendering.models import OutputType, VALID_RENDER_BACKENDS
__all__ = ["OutputType", "VALID_RENDER_BACKENDS"]
from app.domains.rendering.models import (
OUTPUT_TYPE_ARTIFACT_KINDS,
OUTPUT_TYPE_WORKFLOW_FAMILIES,
OutputType,
VALID_RENDER_BACKENDS,
)
__all__ = [
"OutputType",
"VALID_RENDER_BACKENDS",
"OUTPUT_TYPE_WORKFLOW_FAMILIES",
"OUTPUT_TYPE_ARTIFACT_KINDS",
]