fix user list API schema, access checks, and caching

This commit is contained in:
Hazelnoot 2025-10-23 19:22:30 -04:00
parent 2a948b7710
commit 73cc50fe90
22 changed files with 233 additions and 135 deletions

View file

@ -10356,9 +10356,13 @@ export type components = {
id: string;
/** Format: date-time */
createdAt: string;
/** Format: id */
createdBy: string;
name: string;
userIds?: string[];
userIds: string[];
isPublic: boolean;
isLiked?: boolean;
likedCount?: number;
};
Achievement: {
name: components['schemas']['AchievementName'];