···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+import * as z from 'zod/v4-mini';
44+55+export const zBar = z.string();
66+77+export const zFoo = z.object({
88+ foo: z.optional(z.array(zBar).min(1).max(2147483647))
99+});
···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+import * as z from 'zod/v4-mini';
44+55+export const zFoo = z.object({
66+ foo: z.optional(z.coerce.bigint().check(z.gte(BigInt(0)), z.lte(BigInt(100))))
77+});
···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+import { z } from 'zod';
44+55+export const zFoo = z.object({
66+ foo: z.coerce.bigint().gte(BigInt(0)).lte(BigInt(100)).optional()
77+});
···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+import { z } from 'zod/v4';
44+55+export const zFoo = z.object({
66+ foo: z.optional(z.coerce.bigint().gte(BigInt(0)).lte(BigInt(100)))
77+});