Skip to content

Commit

Permalink
Release 1.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Mar 22, 2024
1 parent 195ad07 commit e762c41
Show file tree
Hide file tree
Showing 3 changed files with 4 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 = "flagright"
version = "1.4.12"
version = "1.4.13"
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.4.12",
"X-Fern-SDK-Version": "1.4.13",
}
headers["x-api-key"] = self.api_key
return headers
Expand Down
2 changes: 2 additions & 0 deletions src/flagright/types/generic_bank_account_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from ..core.datetime_utils import serialize_datetime
from .address import Address
from .country_code import CountryCode
from .email_id import EmailId
from .tag import Tag

Expand All @@ -28,6 +29,7 @@ class GenericBankAccountDetails(pydantic.BaseModel):
alias="bankCode",
description="Unique identifier of the bank. In some countries, this can be the same as the bank's SWIFT code",
)
country: typing.Optional[CountryCode]
name: typing.Optional[str] = pydantic.Field(description="Name of the account holder")
bank_address: typing.Optional[Address] = pydantic.Field(alias="bankAddress")
email_id: typing.Optional[EmailId] = pydantic.Field(alias="emailId")
Expand Down

0 comments on commit e762c41

Please sign in to comment.