( sessionId: UUID, messageUuid: UUID, )
| 3859 | * Check if a message UUID exists in the session storage |
| 3860 | */ |
| 3861 | export async function doesMessageExistInSession( |
| 3862 | sessionId: UUID, |
| 3863 | messageUuid: UUID, |
| 3864 | ): Promise<boolean> { |
| 3865 | const messageSet = await getSessionMessages(sessionId) |
| 3866 | return messageSet.has(messageUuid) |
| 3867 | } |
| 3868 | |
| 3869 | export async function getLastSessionLog( |
| 3870 | sessionId: UUID, |
no test coverage detected