Skip to content

Commit 5295bf4

Browse files
committed
make description fields optional in model
1 parent ee15b85 commit 5295bf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/models/Page.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +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;
11-
description_binary: string;
12-
description: string;
13-
description_stripped: string;
10+
description_html?: string;
11+
description_binary?: string;
12+
description?: string;
13+
description_stripped?: string;
1414
created_by: string;
1515
updated_by?: string;
1616
// Additional fields will be added after API verification

0 commit comments

Comments
 (0)