fix: missing type addition

This commit is contained in:
Nicholas Tindle
2025-01-26 12:12:12 +00:00
parent c6c2b852df
commit f0c378c70d

View File

@@ -153,13 +153,16 @@ export type BlockIONullSubSchema = BlockIOSubSchemaMeta & {
type BlockIOCombinedTypeSubSchema = BlockIOSubSchemaMeta &
(
| {
type: "allOf";
allOf: [BlockIOSimpleTypeSubSchema];
}
| {
type: "anyOf";
anyOf: BlockIOSimpleTypeSubSchema[];
default?: string | number | boolean | null;
}
| {
type: "oneOf";
oneOf: BlockIOSimpleTypeSubSchema[];
default?: string | number | boolean | null;
}