Skip to content

Commit d2f6997

Browse files
SDK 1.12.4 Release (#3465)
* SDK regeneration * Update SDK from 345bef5 --------- Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: vellum-automation[bot] <vellum-automation[bot]@users.noreply.github.com>
1 parent 3507826 commit d2f6997

File tree

7 files changed

+27
-25
lines changed

7 files changed

+27
-25
lines changed

ee/codegen/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ee/codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vellum-ai/vellum-codegen",
3-
"version": "1.12.3",
3+
"version": "1.12.4",
44
"main": "lib/src/index.js",
55
"typings": "lib/src/index.d.ts",
66
"files": [

poetry.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "vellum-ai"
33

44
[tool.poetry]
55
name = "vellum-ai"
6-
version = "1.12.3"
6+
version = "1.12.4"
77
description = ""
88
readme = "README.md"
99
authors = []

src/vellum/client/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ def __init__(
2727

2828
def get_headers(self) -> typing.Dict[str, str]:
2929
headers: typing.Dict[str, str] = {
30-
"User-Agent": "vellum-ai/1.12.3",
30+
"User-Agent": "vellum-ai/1.12.4",
3131
"X-Fern-Language": "Python",
3232
"X-Fern-SDK-Name": "vellum-ai",
33-
"X-Fern-SDK-Version": "1.12.3",
33+
"X-Fern-SDK-Version": "1.12.4",
3434
**(self.get_custom_headers() or {}),
3535
}
3636
if self._api_version is not None:

src/vellum/client/types/node_execution_fulfilled_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class NodeExecutionFulfilledBody(UniversalBaseModel):
1313
invoked_ports: typing.Optional[typing.List[InvokedPort]] = None
1414
outputs: typing.Dict[str, typing.Optional[typing.Any]]
1515
mocked: typing.Optional[bool] = None
16+
redacted: typing.Optional[bool] = None
1617

1718
if IS_PYDANTIC_V2:
1819
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2

src/vellum/client/types/workflow_execution_fulfilled_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class WorkflowExecutionFulfilledBody(UniversalBaseModel):
1212
outputs: typing.Dict[str, typing.Optional[typing.Any]]
1313
final_state: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
1414
server_metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
15+
redacted: typing.Optional[bool] = None
1516

1617
if IS_PYDANTIC_V2:
1718
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2

0 commit comments

Comments
 (0)