Finish Notifications -> Conversation

This commit is contained in:
2026-05-25 09:55:47 +02:00
parent a778222564
commit 250509055b
11 changed files with 238 additions and 8 deletions

View File

@@ -0,0 +1,29 @@
/**
* @typedef {Object} ConversationResponseItem
*
* @see app/Http/DynamicLoadController.php
*
* @property {string} username
* @property {object} recipients
* @property {boolean} is_starred
* @property {boolean} is_unread
* @property {boolean} can_edit
* @property {boolean} can_reply
* @property {boolean} can_invite
* @property {boolean} can_upload_attachment
* @property {boolean} view_url
* @property {number} conversation_id
* @property {string} title
* @property {number} user_id
* @property {number} start_date
* @property {boolean} open_invite
* @property {boolean} conversation_open
* @property {number} reply_count
* @property {number} recipient_count
* @property {number} first_message_id
* @property {number} last_message_date
* @property {number} last_message_id
* @property {number} last_message_user_id
* @property {Object} Starter
*/
export {}