From 946e8e7228fd193f0d77facb616b128e015701a9 Mon Sep 17 00:00:00 2001 From: sammy-ette Date: Wed, 2 Apr 2025 15:09:45 +0000 Subject: [PATCH] docs: [ci] generate new docs --- docs/api/hilbish/hilbish.messages.md | 135 --------------------------- 1 file changed, 135 deletions(-) delete mode 100644 docs/api/hilbish/hilbish.messages.md diff --git a/docs/api/hilbish/hilbish.messages.md b/docs/api/hilbish/hilbish.messages.md deleted file mode 100644 index 2dff7a7..0000000 --- a/docs/api/hilbish/hilbish.messages.md +++ /dev/null @@ -1,135 +0,0 @@ ---- -title: Module hilbish.messages -description: simplistic message passing -layout: doc -menu: - docs: - parent: "API" ---- - - -## Introduction -The messages interface defines a way for Hilbish-integrated commands, -user config and other tasks to send notifications to alert the user.z -The `hilbish.message` type is a table with the following keys: -`title` (string): A title for the message notification. -`text` (string): The contents of the message. -`channel` (string): States the origin of the message, `hilbish.*` is reserved for Hilbish tasks. -`summary` (string): A short summary of the `text`. -`icon` (string): Unicode (preferably standard emoji) icon for the message notification -`read` (boolean): Whether the full message has been read or not. - -## Functions -||| -|----|----| -|unreadCount()|Returns the amount of unread messages.| -|readAll()|Marks all messages as read.| -|send(message)|Sends a message.| -|read(idx)|Marks a message at `idx` as read.| -|delete(idx)|Deletes the message at `idx`.| -|clear()|Deletes all messages.| -|all()|Returns all messages.| -
-
-

-hilbish.messages.all() - - - -

- -Returns all messages. -#### Parameters -This function has no parameters. -
- -
-
-

-hilbish.messages.clear() - - - -

- -Deletes all messages. -#### Parameters -This function has no parameters. -
- -
-
-

-hilbish.messages.delete(idx) - - - -

- -Deletes the message at `idx`. -#### Parameters -`idx` **`number`** - - -
- -
-
-

-hilbish.messages.read(idx) - - - -

- -Marks a message at `idx` as read. -#### Parameters -`idx` **`number`** - - -
- -
-
-

-hilbish.messages.send(message) - - - -

- -Sends a message. -#### Parameters -`message` **`hilbish.message`** - - -
- -
-
-

-hilbish.messages.readAll() - - - -

- -Marks all messages as read. -#### Parameters -This function has no parameters. -
- -
-
-

-hilbish.messages.unreadCount() - - - -

- -Returns the amount of unread messages. -#### Parameters -This function has no parameters. -
-