Update api spec (#427)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
2bd736096a
commit
6572a92004
@ -1,4 +1,4 @@
|
||||
from typing import List
|
||||
from typing import List, Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
@ -6,6 +6,6 @@ from pydantic import BaseModel, ConfigDict
|
||||
class BooleanUnion(BaseModel):
|
||||
"""The response from the 'BooleanUnion'."""
|
||||
|
||||
extra_solid_ids: List[str]
|
||||
extra_solid_ids: Optional[List[str]] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
||||
|
Reference in New Issue
Block a user