Release v0.2.21 (#3848)
This commit is contained in:
committed by
GitHub
parent
46ee020b5d
commit
a22260f871
@@ -22,10 +22,10 @@ class BaseClientWrapper:
|
||||
|
||||
def get_headers(self) -> typing.Dict[str, str]:
|
||||
headers: typing.Dict[str, str] = {
|
||||
"User-Agent": "skyvern/0.2.20",
|
||||
"User-Agent": "skyvern/0.2.21",
|
||||
"X-Fern-Language": "Python",
|
||||
"X-Fern-SDK-Name": "skyvern",
|
||||
"X-Fern-SDK-Version": "0.2.20",
|
||||
"X-Fern-SDK-Version": "0.2.21",
|
||||
**(self.get_custom_headers() or {}),
|
||||
}
|
||||
if self._api_key is not None:
|
||||
|
||||
@@ -47,6 +47,9 @@ class WorkflowRunBlock(UniversalBaseModel):
|
||||
attachments: typing.Optional[typing.List[str]] = None
|
||||
subject: typing.Optional[str] = None
|
||||
body: typing.Optional[str] = None
|
||||
instructions: typing.Optional[str] = None
|
||||
positive_descriptor: typing.Optional[str] = None
|
||||
negative_descriptor: typing.Optional[str] = None
|
||||
|
||||
if IS_PYDANTIC_V2:
|
||||
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
||||
|
||||
Reference in New Issue
Block a user