// This file is auto-generated by @hey-api/openapi-ts import * as z from 'zod' export const zGetAllWorkspacesQuery = z.object({ limit: z.int().gte(1).lte(100).optional().default(20), page: z.int().gte(1).lte(99999).optional().default(1), }) /** * Success */ export const zGetAllWorkspacesResponse = z.record(z.string(), z.unknown())