From eebbce29a56121bc66433ddda3e8a585219dc8e2 Mon Sep 17 00:00:00 2001 From: David Stotijn Date: Sat, 20 Aug 2022 15:40:41 +0200 Subject: [PATCH] Add missing `block_id` parent type --- parent.go | 1 + 1 file changed, 1 insertion(+) diff --git a/parent.go b/parent.go index 0bf2652..f85477f 100644 --- a/parent.go +++ b/parent.go @@ -14,5 +14,6 @@ type ParentType string const ( ParentTypeDatabase ParentType = "database_id" ParentTypePage ParentType = "page_id" + ParentTypeBlock ParentType = "block_id" ParentTypeWorkspace ParentType = "workspace" )