Skip to content

Variable: ContentBodyConversionInputSchema

ts
const ContentBodyConversionInputSchema: ZodObject<{
  allowCache: ZodOptional<ZodBoolean>;
  body: ZodObject<{
     representation: ZodCustom<
        | "raw"
        | "storage"
        | "view"
        | string & object
        | "export_view"
        | "styled_view"
        | "editor"
        | "editor2"
        | "anonymous_export_view"
        | "wiki"
        | "atlas_doc_format"
        | "plain", 
        | "raw"
        | "storage"
        | "view"
        | string & object
        | "export_view"
        | "styled_view"
        | "editor"
        | "editor2"
        | "anonymous_export_view"
        | "wiki"
        | "atlas_doc_format"
       | "plain">;
     value: ZodString;
  }, $loose>;
  contentIdContext: ZodOptional<ZodString>;
  embeddedContentRender: ZodOptional<ZodCustom<string & object | "current" | "version-at-save", string & object | "current" | "version-at-save">>;
  expand: ZodOptional<ZodArray<ZodString>>;
  spaceKeyContext: ZodOptional<ZodString>;
  to: ZodString;
}, $loose>;

Defined in: src/v1/models/contentBodyConversionInput.ts:5