Skip to content

Commit a5d929c

Browse files
authored
[SILO-781] chore: add missing description fields in page api (#23)
* add description missing fields in pages model * make description fields optional in model * update pkg version
1 parent 29b5b10 commit a5d929c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@makeplane/plane-node-sdk",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "Node SDK for Plane",
55
"author": "Plane <[email protected]>",
66
"repository": {

src/models/Page.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ import { BaseModel } from "./common";
77
export interface Page extends BaseModel {
88
// Basic page fields - these will be updated with proper types
99
name: string;
10-
description_html: string;
10+
description_html?: string;
11+
description_binary?: string;
12+
description?: string;
13+
description_stripped?: string;
1114
created_by: string;
1215
updated_by?: string;
1316
// Additional fields will be added after API verification

0 commit comments

Comments
 (0)