Feature/more dynamic unions (#2972)

* with validators

* more dynamic unions

* fixes from v31

* better constructor for dynamic unions

* version bump

* fix build
This commit is contained in:
Aiden McClelland
2025-07-01 17:40:39 -06:00
committed by GitHub
parent 35d2ec8a44
commit 340775a593
21 changed files with 863 additions and 611 deletions

View File

@@ -3,5 +3,5 @@ import { ISB } from '@start9labs/start-sdk'
export async function configBuilderToSpec(
builder: ISB.InputSpec<Record<string, unknown>>,
) {
return builder.build({} as any)
return builder.build({} as any).then(a => a.spec)
}