From 6de1948ac77ffcbe8e8efef841f784774f27490f Mon Sep 17 00:00:00 2001 From: Gaspard Wierzbinski Date: Thu, 2 May 2024 09:06:28 -1000 Subject: [PATCH] chore: Add messaging category to CategoryType --- docs/objects/publications.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/objects/publications.md b/docs/objects/publications.md index 36b3f20..667d657 100644 --- a/docs/objects/publications.md +++ b/docs/objects/publications.md @@ -333,12 +333,14 @@ interface Device { ```typescript /* - * microblog -> Twitter, Mastodon-style - * forum -> Reddit-style - * blog -> Wordpress, WriteFreely-style - * image -> Instagram-style - * video -> YouTube-style - * audio -> SoundCloud, Spotify-style + * UI examples for each category: + * microblog -> Twitter, Mastodon + * forum -> Reddit + * blog -> Wordpress, WriteFreely + * image -> Instagram + * video -> YouTube + * audio -> SoundCloud, Spotify + * messaging -> Discord, Matrix, Signal */ -type CategoryType = "microblog" | "forum" | "blog" | "image" | "video" | "audio" -``` \ No newline at end of file +type CategoryType = "microblog" | "forum" | "blog" | "image" | "video" | "audio" | "messaging" +```