Skip to content

Commit db8d24f

Browse files
feat: UTC-608: Agreement popover using new agreement matrix task endpoint (#781)
Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 6476edd commit db8d24f

File tree

8 files changed

+10
-5
lines changed

8 files changed

+10
-5
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@
4747
},
4848
"pyproject_toml": "[project.scripts]\nlabel-studio-converter = \"label_studio_sdk.converter.main:main\"\n"
4949
},
50-
"sdkVersion": "2.0.19"
50+
"sdkVersion": "2.0.20"
5151
}

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
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "label-studio-sdk"
7-
version = "2.0.20.dev"
7+
version = "2.0.20"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/label_studio_sdk/types/all_roles_project_list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ class AllRolesProjectList(UncheckedBaseModel):
140140
"""
141141

142142
id: typing.Optional[int] = None
143+
is_dimensions_enabled: typing.Optional[str] = None
143144
is_draft: typing.Optional[bool] = pydantic.Field(default=None)
144145
"""
145146
Whether or not the project is in the middle of being created

src/label_studio_sdk/types/lse_project.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ class LseProject(UncheckedBaseModel):
140140
"""
141141

142142
id: typing.Optional[int] = None
143+
is_dimensions_enabled: typing.Optional[str] = None
143144
is_draft: typing.Optional[bool] = pydantic.Field(default=None)
144145
"""
145146
Whether or not the project is in the middle of being created

src/label_studio_sdk/types/lse_project_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ class LseProjectResponse(UncheckedBaseModel):
140140
"""
141141

142142
id: typing.Optional[int] = None
143+
is_dimensions_enabled: typing.Optional[str] = None
143144
is_draft: typing.Optional[bool] = pydantic.Field(default=None)
144145
"""
145146
Whether or not the project is in the middle of being created

src/label_studio_sdk/types/user_simple.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class UserSimple(UncheckedBaseModel):
2020
first_name: typing.Optional[str] = None
2121
id: typing.Optional[int] = None
2222
last_name: typing.Optional[str] = None
23+
username: str
2324

2425
if IS_PYDANTIC_V2:
2526
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2

src/label_studio_sdk/types/user_simple_request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class UserSimpleRequest(UncheckedBaseModel):
1818
email: typing.Optional[str] = None
1919
first_name: typing.Optional[str] = None
2020
last_name: typing.Optional[str] = None
21+
username: str
2122

2223
if IS_PYDANTIC_V2:
2324
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2

0 commit comments

Comments
 (0)