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 29b5b10 commit a5d929cCopy full SHA for a5d929c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@makeplane/plane-node-sdk",
3
- "version": "0.2.3",
+ "version": "0.2.4",
4
"description": "Node SDK for Plane",
5
"author": "Plane <[email protected]>",
6
"repository": {
src/models/Page.ts
@@ -7,7 +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;
+ description_html?: string;
11
+ description_binary?: string;
12
+ description?: string;
13
+ description_stripped?: string;
14
created_by: string;
15
updated_by?: string;
16
// Additional fields will be added after API verification
0 commit comments