We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ecfe7 commit 54d13b4Copy full SHA for 54d13b4
packages/models-library/src/models_library/projects_state.py
@@ -227,7 +227,11 @@ class ProjectRunningState(BaseModel):
227
228
229
class ProjectState(BaseModel):
230
- locked: Annotated[ProjectLocked, Field(..., description="The project lock state")]
231
- state: ProjectRunningState = Field(..., description="The project running state")
+ share_state: Annotated[
+ ProjectShareState, Field(description="The project lock state")
232
+ ]
233
+ state: Annotated[
234
+ ProjectRunningState, Field(description="The project running state")
235
236
237
model_config = ConfigDict(extra="forbid")
0 commit comments