/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Notion Page object. * * Pages can be: * 1. Standalone pages (top-level in workspace) * 2. Items/rows within a database data source * * For pages in databases, properties should match the data source schema. */ export interface NotionPage { /** Page title */ title: string; /** Page properties (for database pages) */ properties?: Record; /** Content blocks in this page */ blocks?: Klavis.NotionBlock[]; /** Comments on this page */ comments?: Klavis.NotionComment[]; /** Name of the data source this page belongs to (for initialization) */ data_source_name?: string; }