Skip to content

Commit

Permalink
Release v0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Feb 13, 2024
1 parent 7743883 commit b46fae7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "superagent-py"
version = "v0.2.5"
version = "v0.2.6"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/superagent/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "superagent-py",
"X-Fern-SDK-Version": "v0.2.5",
"X-Fern-SDK-Version": "v0.2.6",
}
token = self._get_token()
if token is not None:
Expand Down
1 change: 1 addition & 0 deletions src/superagent/types/app_models_request_api_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class AppModelsRequestApiUser(pydantic.BaseModel):
first_name: typing.Optional[str] = pydantic.Field(alias="firstName")
last_name: typing.Optional[str] = pydantic.Field(alias="lastName")
company: typing.Optional[str]
anonymous_id: typing.Optional[str] = pydantic.Field(alias="anonymousId")

def json(self, **kwargs: typing.Any) -> str:
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
Expand Down

0 comments on commit b46fae7

Please sign in to comment.