Skip to content

Commit b1c6f4d

Browse files
committed
Release 1.5.9
1 parent 9012cb6 commit b1c6f4d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "flagright"
3-
version = "1.5.8"
3+
version = "1.5.9"
44
description = ""
55
readme = "README.md"
66
authors = []

src/flagright/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1414
headers: typing.Dict[str, str] = {
1515
"X-Fern-Language": "Python",
1616
"X-Fern-SDK-Name": "flagright",
17-
"X-Fern-SDK-Version": "1.5.8",
17+
"X-Fern-SDK-Version": "1.5.9",
1818
}
1919
headers["x-api-key"] = self.api_key
2020
return headers

src/flagright/types/card_details.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ class CardDetails(pydantic.BaseModel):
5050
payment_channel: typing.Optional[str] = pydantic.Field(alias="paymentChannel")
5151
card_type: typing.Optional[CardType] = pydantic.Field(alias="cardType")
5252
merchant_details: typing.Optional[CardMerchantDetails] = pydantic.Field(alias="merchantDetails")
53+
network_provider_risk_score: typing.Optional[float] = pydantic.Field(
54+
alias="networkProviderRiskScore", description="Risk score of the card from your network provider"
55+
)
5356
tags: typing.Optional[typing.List[Tag]] = pydantic.Field(
5457
description="Additional information that can be added via tags"
5558
)

0 commit comments

Comments
 (0)