refactor(editor): remove truncation logic and related properties from editor content response

This commit is contained in:
Anish Sarkar 2026-06-05 15:32:26 +05:30
parent 640238e1af
commit f19f31e51c
4 changed files with 1 additions and 22 deletions

View file

@ -50,7 +50,6 @@ interface EditorContent {
source_markdown: string;
content_size_bytes?: number;
chunk_count?: number;
truncated?: boolean;
viewer_mode?: ViewerMode;
editor_plate_max_bytes?: number;
}

View file

@ -22,7 +22,6 @@ interface DocumentContent {
source_markdown: string;
content_size_bytes?: number;
chunk_count?: number;
truncated?: boolean;
viewer_mode?: ViewerMode;
editor_plate_max_bytes?: number;
}

View file

@ -43,7 +43,6 @@ export type EditorContent = {
source_markdown: string;
content_size_bytes: number;
chunk_count: number;
truncated: boolean;
viewer_mode?: "plate" | "monaco";
editor_plate_max_bytes?: number;
};