move user.lastFetchedAt to UserLite

This commit is contained in:
Hazelnoot 2025-07-04 12:31:36 -04:00
parent 69402e3abb
commit f163e15602
4 changed files with 9 additions and 8 deletions

View file

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