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 3ed81b3 commit 29b30ecCopy full SHA for 29b30ec
packages/notion-types/src/block.ts
@@ -41,6 +41,7 @@ export type BlockType =
41
| 'table'
42
| 'table_row'
43
| 'external_object_instance'
44
+ | 'breadcrumb'
45
// fallback for unknown blocks
46
| string
47
@@ -86,6 +87,7 @@ export type Block =
86
87
| TableBlock
88
| TableRowBlock
89
| ExternalObjectInstance
90
+ | BreadcrumbInstance
91
92
/**
93
* Base properties shared by all blocks.
@@ -449,3 +451,7 @@ export interface ExternalObjectInstance extends BaseBlock {
449
451
original_url: string
450
452
}
453
454
+
455
+export interface BreadcrumbInstance extends BaseBlock {
456
+ type: 'breadcrumb'
457
+}
0 commit comments