chore: add createdAt and updatedAt to session

This commit is contained in:
josc146
2023-04-21 21:18:26 +08:00
parent 37492c436e
commit d615739f5b
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -51,6 +51,7 @@ export const getSession = async (sessionId) => {
}
export const updateSession = async (newSession) => {
newSession.updatedAt = new Date().toISOString()
const currentSessions = await getSessions()
currentSessions[
currentSessions.findIndex((session) => session.sessionId === newSession.sessionId)
+4
View File
@@ -7,6 +7,8 @@ import { v4 as uuidv4 } from 'uuid'
* @property {Object[]|null} conversationRecords
* @property {string|null} sessionName
* @property {string|null} sessionId
* @property {string|null} createdAt
* @property {string|null} updatedAt
* @property {string|null} aiName
* @property {string|null} modelName
* @property {boolean|null} autoClean
@@ -45,6 +47,8 @@ export function initSession({
sessionName,
sessionId: uuidv4(),
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
aiName: modelName ? Models[modelName].desc : null,
modelName,