Variable: GetCustomContentByTypeSchema
ts
const GetCustomContentByTypeSchema: ZodObject<{
bodyFormat: ZodOptional<ZodEnum<{
atlas_doc_format: "atlas_doc_format";
raw: "raw";
storage: "storage";
}>>;
cursor: ZodOptional<ZodString>;
id: ZodOptional<ZodArray<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";
}>>;
spaceId: ZodOptional<ZodArray<ZodNumber>>;
type: ZodString;
}, $strip>;Defined in: src/v2/parameters/getCustomContentByType.ts:5