1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-06-08 23:46:12 +02:00

Add missing block_id parent type

This commit is contained in:
David Stotijn 2022-08-20 15:40:41 +02:00
parent f4c5cf83ad
commit eebbce29a5
No known key found for this signature in database
GPG Key ID: B23243A9C47CEE2D

View File

@ -14,5 +14,6 @@ type ParentType string
const ( const (
ParentTypeDatabase ParentType = "database_id" ParentTypeDatabase ParentType = "database_id"
ParentTypePage ParentType = "page_id" ParentTypePage ParentType = "page_id"
ParentTypeBlock ParentType = "block_id"
ParentTypeWorkspace ParentType = "workspace" ParentTypeWorkspace ParentType = "workspace"
) )