Skip to content

Variable: MovePageSchema

ts
const MovePageSchema: ZodObject<{
  pageId: ZodString;
  position: ZodEnum<{
     after: "after";
     append: "append";
     before: "before";
  }>;
  targetId: ZodString;
}, $strip>;

Defined in: src/v1/parameters/movePage.ts:3