Skip to content

Commit 2a1feba

Browse files
authored
[SILO-782] chore: add description missing fields in pages model (#14)
1 parent da384d3 commit 2a1feba

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

plane/models/pages.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class Page(BaseModel):
1414
id: str | None = None
1515
name: str | None = None
1616
description_stripped: str | None = None
17+
description_html: str | None = None
18+
description_binary: str | None = None
19+
description: dict | str | None = None
1720
created_at: str | None = None
1821
updated_at: str | None = None
1922
owned_by: str | None = None

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "plane-sdk"
7-
version = "0.2.2"
7+
version = "0.2.3"
88
description = "Python SDK for Plane API"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)