Skip to content

Commit 62e5b25

Browse files
committed
Release 1.6.19
1 parent abad31b commit 62e5b25

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
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.6.18"
3+
version = "1.6.19"
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.6.18",
17+
"X-Fern-SDK-Version": "1.6.19",
1818
}
1919
headers["x-api-key"] = self.api_key
2020
return headers

src/flagright/types/kyc_status_details.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
class KycStatusDetails(pydantic.BaseModel):
1616
reason: typing.Optional[str]
1717
status: typing.Optional[KycStatus]
18-
user_id: typing.Optional[str] = pydantic.Field(alias="userId")
1918

2019
def json(self, **kwargs: typing.Any) -> str:
2120
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -28,5 +27,4 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
2827
class Config:
2928
frozen = True
3029
smart_union = True
31-
allow_population_by_field_name = True
3230
json_encoders = {dt.datetime: serialize_datetime}

src/flagright/types/user_state_details.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414

1515
class UserStateDetails(pydantic.BaseModel):
16-
user_id: typing.Optional[str] = pydantic.Field(alias="userId")
1716
reason: typing.Optional[str]
1817
state: UserState
1918

@@ -28,5 +27,4 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
2827
class Config:
2928
frozen = True
3029
smart_union = True
31-
allow_population_by_field_name = True
3230
json_encoders = {dt.datetime: serialize_datetime}

0 commit comments

Comments
 (0)