move user.updateAt to UserLite

This commit is contained in:
Hazelnoot 2025-07-04 10:43:23 -04:00
parent 3dbfb4fa20
commit 69402e3abb
4 changed files with 9 additions and 8 deletions

View file

@ -69,6 +69,11 @@ export const packedUserLiteSchema = {
nullable: false, optional: false,
format: 'date-time',
},
updatedAt: {
type: 'string',
nullable: true, optional: false,
format: 'date-time',
},
approved: {
type: 'boolean',
nullable: false, optional: false,
@ -304,11 +309,6 @@ export const packedUserDetailedNotMeOnlySchema = {
nullable: false, optional: false,
},
},
updatedAt: {
type: 'string',
nullable: true, optional: false,
format: 'date-time',
},
lastFetchedAt: {
type: 'string',
nullable: true, optional: false,