Skip to content

Commit bd55e14

Browse files
Merge pull request #275 from nabettu/master
2 parents 3ed81b3 + 29b30ec commit bd55e14

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/notion-types/src/block.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export type BlockType =
4141
| 'table'
4242
| 'table_row'
4343
| 'external_object_instance'
44+
| 'breadcrumb'
4445
// fallback for unknown blocks
4546
| string
4647

@@ -86,6 +87,7 @@ export type Block =
8687
| TableBlock
8788
| TableRowBlock
8889
| ExternalObjectInstance
90+
| BreadcrumbInstance
8991

9092
/**
9193
* Base properties shared by all blocks.
@@ -449,3 +451,7 @@ export interface ExternalObjectInstance extends BaseBlock {
449451
original_url: string
450452
}
451453
}
454+
455+
export interface BreadcrumbInstance extends BaseBlock {
456+
type: 'breadcrumb'
457+
}

0 commit comments

Comments
 (0)