fix: remove pagination from friends endpoints since it is no longer supported

This commit is contained in:
Christel Westerberg
2024-07-11 13:36:18 +02:00
parent 3374505aee
commit 9ede5e4210
8 changed files with 63 additions and 144 deletions
-5
View File
@@ -18,8 +18,3 @@ export const soonestUpcomingStaysInput = z
limit: z.number().int().positive(),
})
.default({ limit: 3 })
export const friendTransactionsInput = z.object({
cursor: z.number().int().nullish(),
limit: z.number().min(0).default(5),
})