Skip to content

Commit 017b5c9

Browse files
committed
Release 1.4.11
1 parent 33b6ce8 commit 017b5c9

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

src/flagright/types/kyc_status.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class KycStatus(str, enum.Enum):
1515
NEW = "NEW"
1616
CANCELLED = "CANCELLED"
1717
MANUAL_REVIEW = "MANUAL_REVIEW"
18+
EDD_IN_PROGRESS = "EDD_IN_PROGRESS"
1819

1920
def visit(
2021
self,
@@ -26,6 +27,7 @@ def visit(
2627
new: typing.Callable[[], T_Result],
2728
cancelled: typing.Callable[[], T_Result],
2829
manual_review: typing.Callable[[], T_Result],
30+
edd_in_progress: typing.Callable[[], T_Result],
2931
) -> T_Result:
3032
if self is KycStatus.SUCCESSFUL:
3133
return successful()
@@ -43,3 +45,5 @@ def visit(
4345
return cancelled()
4446
if self is KycStatus.MANUAL_REVIEW:
4547
return manual_review()
48+
if self is KycStatus.EDD_IN_PROGRESS:
49+
return edd_in_progress()

0 commit comments

Comments
 (0)