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.
2 parents 3ed81b3 + 29b30ec commit bd55e14Copy full SHA for bd55e14
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