Revert "fix: Don't use Record for StageFull and ModuleFull"

This reverts commit 88cde1e8f2.
This commit is contained in:
Gerald Pinder 2024-10-12 14:10:29 -04:00
parent 88cde1e8f2
commit 63c3d58324

View file

@ -63,7 +63,7 @@ model StageList {
@jsonSchema("stage-v1.json")
model StageFull {
...Stage;
...Record<Stage>;
}
alias Stage = StageDefault | FromFile;
@ -94,7 +94,7 @@ model ModuleList {
@jsonSchema("module-v1.json")
model ModuleFull {
...Module;
...Record<Module>;
}
alias Module = RepoModule | CustomModule | FromFile;