feat(notes): liens internes, onglet Réseau, living blocks et consentement IA
Rend les liens entre notes visibles et persistants (sync NoteLink au save, auto-save, graphe réseau rafraîchi), ajoute living blocks, Memory Echo, recherche globale, consentement IA explicite et consolide les prototypes design en architectural-grid. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
20
memento-note/types/next-auth.d.ts
vendored
Normal file
20
memento-note/types/next-auth.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { DefaultSession } from 'next-auth'
|
||||
|
||||
declare module 'next-auth' {
|
||||
interface Session {
|
||||
aiSessionConsent?: boolean
|
||||
user: DefaultSession['user'] & {
|
||||
id?: string
|
||||
role?: string
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'next-auth/jwt' {
|
||||
interface JWT {
|
||||
id?: string
|
||||
role?: string
|
||||
sessionVersion?: number
|
||||
aiSessionConsent?: boolean
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user