pagination: ZodObject<
{
has_next_page: ZodBoolean;
next_page_cursor: ZodNullable<ZodString>;
next_page_url: ZodNullable<ZodString>;
},
"strip",
ZodTypeAny,
{
has_next_page: boolean;
next_page_cursor: string
| null;
next_page_url: string | null;
},
{
has_next_page: boolean;
next_page_cursor: string
| null;
next_page_url: string | null;
},
> = ...