notion-types
Advanced tools
Comparing version 4.0.0 to 4.2.17
import { ID, Color, Decoration, Role } from './core'; | ||
export declare type BlockType = 'page' | 'text' | 'bookmark' | 'bulleted_list' | 'numbered_list' | 'header' | 'sub_header' | 'sub_sub_header' | 'quote' | 'equation' | 'to_do' | 'table_of_contents' | 'divider' | 'column_list' | 'column' | 'callout' | 'toggle' | 'image' | 'embed' | 'gist' | 'video' | 'figma' | 'tweet' | 'maps' | 'pdf' | 'audio' | 'drive' | 'file' | 'code' | 'collection_view' | 'collection_view_page' | string; | ||
export declare type BlockType = 'page' | 'text' | 'bookmark' | 'bulleted_list' | 'numbered_list' | 'header' | 'sub_header' | 'sub_sub_header' | 'quote' | 'equation' | 'to_do' | 'table_of_contents' | 'divider' | 'column_list' | 'column' | 'callout' | 'toggle' | 'image' | 'embed' | 'gist' | 'video' | 'figma' | 'typeform' | 'tweet' | 'maps' | 'pdf' | 'audio' | 'drive' | 'file' | 'code' | 'collection_view' | 'collection_view_page' | string; | ||
/** The different block values a block can have. */ | ||
export declare type Block = TextBlock | PageBlock | BulletedListBlock | NumberedListBlock | HeaderBlock | SubHeaderBlock | SubSubHeaderBlock | TodoBlock | TableOfContentsBlock | DividerBlock | ColumnListBlock | ColumnBlock | QuoteBlock | EquationBlock | CodeBlock | ImageBlock | VideoBlock | FigmaBlock | TweetBlock | PdfBlock | MapsBlock | AudioBlock | GoogleDriveBlock | FileBlock | EmbedBlock | GistBlock | CalloutBlock | BookmarkBlock | ToggleBlock | CollectionViewBlock | CollectionViewPageBlock; | ||
export declare type Block = TextBlock | PageBlock | BulletedListBlock | NumberedListBlock | HeaderBlock | SubHeaderBlock | SubSubHeaderBlock | TodoBlock | TableOfContentsBlock | DividerBlock | ColumnListBlock | ColumnBlock | QuoteBlock | EquationBlock | CodeBlock | ImageBlock | VideoBlock | FigmaBlock | TypeformBlock | TweetBlock | PdfBlock | MapsBlock | AudioBlock | GoogleDriveBlock | FileBlock | EmbedBlock | GistBlock | CalloutBlock | BookmarkBlock | ToggleBlock | CollectionViewBlock | CollectionViewPageBlock; | ||
/** | ||
@@ -167,2 +167,5 @@ * Base properties shared by all blocks. | ||
} | ||
export interface TypeformBlock extends BaseContentBlock { | ||
type: 'typeform'; | ||
} | ||
export interface TweetBlock extends BaseContentBlock { | ||
@@ -169,0 +172,0 @@ type: 'tweet'; |
import { ID, Color, Decoration, Role } from './core'; | ||
export declare type BlockType = 'page' | 'text' | 'bookmark' | 'bulleted_list' | 'numbered_list' | 'header' | 'sub_header' | 'sub_sub_header' | 'quote' | 'equation' | 'to_do' | 'table_of_contents' | 'divider' | 'column_list' | 'column' | 'callout' | 'toggle' | 'image' | 'embed' | 'gist' | 'video' | 'figma' | 'tweet' | 'maps' | 'pdf' | 'audio' | 'drive' | 'file' | 'code' | 'collection_view' | 'collection_view_page' | string; | ||
export declare type BlockType = 'page' | 'text' | 'bookmark' | 'bulleted_list' | 'numbered_list' | 'header' | 'sub_header' | 'sub_sub_header' | 'quote' | 'equation' | 'to_do' | 'table_of_contents' | 'divider' | 'column_list' | 'column' | 'callout' | 'toggle' | 'image' | 'embed' | 'gist' | 'video' | 'figma' | 'typeform' | 'tweet' | 'maps' | 'pdf' | 'audio' | 'drive' | 'file' | 'code' | 'collection_view' | 'collection_view_page' | string; | ||
/** The different block values a block can have. */ | ||
export declare type Block = TextBlock | PageBlock | BulletedListBlock | NumberedListBlock | HeaderBlock | SubHeaderBlock | SubSubHeaderBlock | TodoBlock | TableOfContentsBlock | DividerBlock | ColumnListBlock | ColumnBlock | QuoteBlock | EquationBlock | CodeBlock | ImageBlock | VideoBlock | FigmaBlock | TweetBlock | PdfBlock | MapsBlock | AudioBlock | GoogleDriveBlock | FileBlock | EmbedBlock | GistBlock | CalloutBlock | BookmarkBlock | ToggleBlock | CollectionViewBlock | CollectionViewPageBlock; | ||
export declare type Block = TextBlock | PageBlock | BulletedListBlock | NumberedListBlock | HeaderBlock | SubHeaderBlock | SubSubHeaderBlock | TodoBlock | TableOfContentsBlock | DividerBlock | ColumnListBlock | ColumnBlock | QuoteBlock | EquationBlock | CodeBlock | ImageBlock | VideoBlock | FigmaBlock | TypeformBlock | TweetBlock | PdfBlock | MapsBlock | AudioBlock | GoogleDriveBlock | FileBlock | EmbedBlock | GistBlock | CalloutBlock | BookmarkBlock | ToggleBlock | CollectionViewBlock | CollectionViewPageBlock; | ||
/** | ||
@@ -167,2 +167,5 @@ * Base properties shared by all blocks. | ||
} | ||
export interface TypeformBlock extends BaseContentBlock { | ||
type: 'typeform'; | ||
} | ||
export interface TweetBlock extends BaseContentBlock { | ||
@@ -169,0 +172,0 @@ type: 'tweet'; |
{ | ||
"name": "notion-types", | ||
"version": "4.0.0", | ||
"version": "4.2.17", | ||
"description": "TypeScript types for core Notion data structures.", | ||
@@ -14,3 +14,3 @@ "repository": "NotionX/react-notion-x", | ||
}, | ||
"gitHead": "84d59d5ffd98d8a363916f9d3fd12794450cb6ea" | ||
"gitHead": "7293758aadd18a319be3f1f76cccfe543d4333bc" | ||
} |
@@ -26,2 +26,3 @@ import { ID, Color, Decoration, Role } from './core' | ||
| 'figma' | ||
| 'typeform' | ||
| 'tweet' | ||
@@ -59,2 +60,3 @@ | 'maps' | ||
| FigmaBlock | ||
| TypeformBlock | ||
| TweetBlock | ||
@@ -263,2 +265,6 @@ | PdfBlock | ||
export interface TypeformBlock extends BaseContentBlock { | ||
type: 'typeform' | ||
} | ||
export interface TweetBlock extends BaseContentBlock { | ||
@@ -265,0 +271,0 @@ type: 'tweet' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
485331
1991