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 ee15b85 commit 5295bf4Copy full SHA for 5295bf4
src/models/Page.ts
@@ -7,10 +7,10 @@ import { BaseModel } from "./common";
7
export interface Page extends BaseModel {
8
// Basic page fields - these will be updated with proper types
9
name: string;
10
- description_html: string;
11
- description_binary: string;
12
- description: string;
13
- description_stripped: string;
+ description_html?: string;
+ description_binary?: string;
+ description?: string;
+ description_stripped?: string;
14
created_by: string;
15
updated_by?: string;
16
// Additional fields will be added after API verification
0 commit comments