Add pagination to the GET /api/outfits route using limit and offset modifiers to the query: https://orm.drizzle.team/docs/select#limit--offset. Should accept a page parameter that defaults to 0 if omitted AND a size parameter that defaults to 10 if omitted. Ensure that both parameters are validated properly using Zod.
Description
Add pagination to the GET /api/outfits route using limit and offset modifiers to the query: https://orm.drizzle.team/docs/select#limit--offset. Should accept a
page
parameter that defaults to0
if omitted AND asize
parameter that defaults to10
if omitted. Ensure that both parameters are validated properly using Zod.Acceptance Criteria