Variable: GetPagesSchema
ts
const GetPagesSchema: ZodObject<{
bodyFormat: ZodOptional<ZodCustom<"storage" | string & object | "atlas_doc_format", "storage" | string & object | "atlas_doc_format">>;
cursor: ZodOptional<ZodString>;
id: ZodOptional<ZodArray<ZodNumber>>;
limit: ZodOptional<ZodNumber>;
sort: ZodOptional<ZodCustom<
| "id"
| "title"
| string & object
| "created-date"
| "-created-date"
| "modified-date"
| "-modified-date"
| "-id"
| "-title",
| "id"
| "title"
| string & object
| "created-date"
| "-created-date"
| "modified-date"
| "-modified-date"
| "-id"
| "-title">>;
spaceId: ZodOptional<ZodArray<ZodNumber>>;
status: ZodOptional<ZodArray<ZodCustom<"deleted" | string & object | "current" | "trashed" | "archived", "deleted" | string & object | "current" | "trashed" | "archived">>>;
subtype: ZodOptional<ZodCustom<"page" | "live" | string & object, "page" | "live" | string & object>>;
title: ZodOptional<ZodString>;
}, $strip>;Defined in: src/v2/parameters/getPages.ts:6