Skip to content

Commit 9a6511e

Browse files
committed
fix: blocked_uids changed from unknown to number
1 parent c99251e commit 9a6511e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

projects/api/src/contracts/users/_internal/response/settingsResponseSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const settingsResponseSchema = z.object({
110110
favorites: z.array(genreEnumSchema).nullish(),
111111
disliked: z.array(genreEnumSchema).nullish(),
112112
}),
113-
comments: z.object({ blocked_uids: z.array(z.unknown()) }),
113+
comments: z.object({ blocked_uids: z.array(z.number().int()) }),
114114
recommendations: z.object({
115115
ignore_collected: z.boolean(),
116116
ignore_watchlisted: z.boolean(),

0 commit comments

Comments
 (0)