Variable: GetPagesInSpaceSchema
ts
const GetPagesInSpaceSchema: ZodObject<{
bodyFormat: ZodOptional<ZodEnum<{
atlas_doc_format: "atlas_doc_format";
storage: "storage";
}>>;
cursor: ZodOptional<ZodString>;
depth: ZodOptional<ZodEnum<{
all: "all";
root: "root";
}>>;
id: ZodNumber;
limit: ZodOptional<ZodNumber>;
sort: ZodOptional<ZodEnum<{
-created-date: "-created-date";
-id: "-id";
-modified-date: "-modified-date";
-title: "-title";
created-date: "created-date";
id: "id";
modified-date: "modified-date";
title: "title";
}>>;
status: ZodOptional<ZodArray<ZodEnum<{
archived: "archived";
current: "current";
deleted: "deleted";
trashed: "trashed";
}>>>;
title: ZodOptional<ZodString>;
}, $strip>;Defined in: src/v2/parameters/getPagesInSpace.ts:5