mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix: missing type addition
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user