Skip to content

Commit

Permalink
Release 1.6.29
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 14, 2024
1 parent e3e5e7b commit 320b43b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "flagright"
version = "1.6.28"
version = "1.6.29"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/flagright/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": "flagright",
"X-Fern-SDK-Version": "1.6.28",
"X-Fern-SDK-Version": "1.6.29",
}
headers["x-api-key"] = self.api_key
return headers
Expand Down
2 changes: 1 addition & 1 deletion src/flagright/types/user_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class UserDetails(pydantic.BaseModel):
Model for consumer user personal details
"""

name: ConsumerName
name: typing.Optional[ConsumerName]
date_of_birth: typing.Optional[str] = pydantic.Field(
alias="dateOfBirth", description="Date of birth of the user (YYYY-MM-DD)"
)
Expand Down

0 comments on commit 320b43b

Please sign in to comment.