From 78852ab9c90e8f0f3d0fe8359b8ac5c1a750ac6d Mon Sep 17 00:00:00 2001 From: koonwen Date: Tue, 12 Nov 2024 05:59:32 +0000 Subject: [PATCH] make bookmark.title nullable --- lib/slack.atd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/slack.atd b/lib/slack.atd index b8a64e7..34e800c 100644 --- a/lib/slack.atd +++ b/lib/slack.atd @@ -435,7 +435,7 @@ type remove_bookmark_res = { type bookmark = { id: string; channel_id: string; - title: string; + ?title: string nullable; link: string; }